/* AamarPay Visa Form Styles */

form {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

form input[type="text"],
form input[type="email"],
form input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    margin: 0 0 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

form button[type="submit"] {
    width: 100%;
    background-color: #06284C;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #C2850C;
}

@media (max-width: 600px) {
    form {
        padding: 20px;
        margin: 20px;
    }

    form input,
    form button {
        font-size: 16px;
    }
}
