﻿
body {
    background: url('../../images/image 3.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.viewicon {
    cursor:pointer;
}

.login-container {
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    border: 1px solid #ccc;
    background: #F7F6F4;
    box-shadow: 0px 3px #ccc;
}

    .login-container img {
        width: 270px;
        margin-bottom: -2px;
    }

    .login-container h1 {
        font-family: 'Exo 2', sans-serif;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .login-container p {
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        color: #666;
        margin-bottom: 30px;
    }

.form-group .item p span {
    padding: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        text-align: left;
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .form-group small {
        color: red;
        display: block;
        text-align: left;
        margin-top: 5px;
    }

    .form-group a {
        font-size: 13px;
        color: #007bff;
        text-decoration: none;
    }

.btn-primary {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #34495e;
    }

.login-container .signup-link {
    margin-top: 20px;
    font-size: 14px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}


#otpInputs {
    display: flex;
    justify-content: center;
    gap: 8px; /* Space between boxes */
    margin-top: 10px;
}

.otp-input {
    width: 45px;
    height: 45px;
    padding: 8px;
    text-align: center;
    font-size: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .otp-input:focus {
        border-color: #007bff; /* Focus color */
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    }
    /* Optional style to remove number spinner in some browsers */
    .otp-input[type="text"]::-webkit-outer-spin-button,
    .otp-input[type="text"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.form-group .item {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

    .form-group .item p {
        margin-bottom: 0px;
    }

