
.login-body {
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg,#2980b9, #8e44ad);
    height: 100vh;
}

.login-center {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: clamp(300px, 100%, 450px);
    border-color: #007ec1;
    border-style: solid;
    background: white;
    border-radius: 6px;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.05);
}

    .login-center h1 {
        padding-block: clamp(.8rem, 2vw, 1.2rem);
        color: #007ec1;
        border-bottom: 1px solid #007ec1;
        font-size: clamp(30px, 5vw, 40px);
    }


    .login-center form {
        padding: 0 40px 20px;
        box-sizing: border-box;
    }

form .txt_field {
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.txt_field input {
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
}

.txt_field label {
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.txt_field span::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2691d9;
    transition: .5s;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
    top: -5px;
    color: #2691d9;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before {
    width: 100%;
}

input[type="submit"] {
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

    input[type="submit"]:hover {
        border-color: #2691d9;
        transition: .5s;
    }

.signup_link {
    margin: 10px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

    .signup_link a {
        color: #2691d9;
        text-decoration: none;
    }

        .signup_link a:hover {
            text-decoration: underline;
        }

.verification-center {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    width: clamp(300px, 100%, 450px);
    border-color: #007ec1;
    border-style: solid;
    background: white;
    border-radius: 6px;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.05);
    font-size: clamp(.5rem, 3.5vw, 1rem);
}

    .verification-center h1 {
        padding-block: clamp(.8rem, 2vw, 1.2rem);
        color: #007ec1;
        border-bottom: 1px solid #007ec1;
        font-size: clamp(30px, 5vw, 40px);
    }

    .verification-center p {
        text-align: left;
        padding: 0 20px 20px 20px;
    }

    .verification-center form {
        padding-left: 15px;
        box-sizing: border-box;
    }

    .verification-center input[type="submit"] {
        display: block;
        margin: 0 auto;
        width: 70%;
        height: 50px;
        border: 1px solid;
        background: #2691d9;
        border-radius: 25px;
        font-size: 18px;
        color: #e9f4fb;
        font-weight: 700;
        cursor: pointer;
        outline: none;
    }

        .verification-center input[type="submit"]:hover {
            border-color: #2691d9;
            transition: .5s;
        }

.otp-container {
    /* Basic styling for the div container */
    display: none; /* Hidden by default, shown dynamically with JS */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

.otp-input {
    /* Styling for the input field */
    width: 100%;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 10px; /* Spacing out the 5 digits visually */
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.otp-container input[type="submit"] {
    display: block;
    margin: 0 auto;
    width: 70%;
    height: 50px;
    border: 1px solid;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

    .otp-container input[type="submit"]:hover {
        border-color: #2691d9;
        transition: .5s;
    }


.response-msg {
    text-align: center;
    padding-top: 10px;
    display: block;
}

