

/*--------------------- login-processing-------------------*/




    .otp-card {
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        padding: 40px 30px;
        width: 100%;
        max-width: 500px;
        backdrop-filter: blur(10px);
        border: 1px solid #e0e0e0;
    }

    .otp-card h1 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
    }

    .otp-card p {
        font-size: 1rem;
        color: #666;
        text-align: center;
        margin-bottom: 30px;
    }

    .otp-card .otp-field {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 25px;
    }

    .otp-card .otp-field input {
        width: 55px;
        height: 55px;
        font-size: 24px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid #ccc;
        background-color: #fff;
    }

    .main_btn {
        width: 100%;
        padding: 12px;
        background-color: #007bff;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        transition: 0.3s ease;
    }

    .main_btn:hover {
        background-color: #0056b3;
    }

    .resendotpbutton {
        color: #007bff;
        cursor: pointer;
        font-weight: 500;
    }

    .otp-img {
        text-align: center;
        margin-bottom: 20px;
    }

    .otp-img img {
        max-width: 150px;
    }

    .message {
        margin-bottom: 20px;
    }
    
    