﻿ /* Input Field Styling */
input[type="text"] {
    width: 100%; 
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button Styling */
.send-otp-btn, .verify-btn, .resend-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #1d3a7c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
}

    .send-otp-btn:hover, .verify-btn:hover, .resend-btn:hover {
        background-color: #1746a2;
    }

/* Back Button Styling */
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 12px;
    font-size: 16px;
    color: #1d3a7c;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* OTP Input Box Styling */
.otp-container {
    margin-top: 20px;
}

.otp-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .otp-box input[type="text"] {
        width: 40px;
        height: 40px;
        font-size: 18px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

/* Responsive Styling */
@media (max-width: 600px) {
    .mobile-form-container, .otp-form-container {
        padding: 15px;
    }

    .otp-box input[type="text"] {
        width: 35px;
        height: 35px;
    }
}
p {
    font-size: var(--font-size-16);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-400);
}
