﻿.large-containerr {
    max-width: 950px !important;
}

sectionn {
    display: flex;
    max-height: 510px;
    min-height: 570px;
    height: 90vh;
    max-width: 950px;
    width: 90vw;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#cover {
    flex: 1;
    height: 100%;
    position: relative;
}

    #cover * {
        color: #eee;
    }

#icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    filter: invert(1);
}

#sliderContainer {
    width: 100%;
    height: 100%;
}

    #sliderContainer div {
        width: 100%;
        height: 100%;
        position: relative;
    }

    #sliderContainer h1 {
        position: absolute;
        top: 50%;
        width: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #sliderContainer .about {
        position: absolute;
        bottom: 50px;
        width: 70%;
        height: 40px;
        display: flex;
        justify-content: space-between;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

.controlLabels {
    display: flex;
    justify-content: end;
    gap: 7px;
}

    .controlLabels label {
        border: 0.5px solid #fff;
        opacity: 0.7;
        width: 30px;
        height: 30px;
        display: grid;
        place-content: center;
        border-radius: 50px;
        padding-bottom: 4px;
        cursor: pointer;
    }

#sliderContainer #model1,
#sliderContainer #model2,
#sliderContainer #model3,
#sliderContainer #model4 {
    display: none;
}

#slide1:checked ~ #sliderContainer #model1,
#slide2:checked ~ #sliderContainer #model2,
#slide3:checked ~ #sliderContainer #model3,
#slide4:checked ~ #sliderContainer #model4 {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

#sliderContainer div img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#loginForm {
    width: 50%;
    height: 100%;
    padding-top: 40px;
    background: #fff;
    padding-inline: 25px;
    white-space: nowrap;
}

img {
    cursor-pointer: none;
}

#createAccountForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-inline: auto;
    margin-block: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
button {
    flex: 1;
    padding: 7px 10px;
    font-size: 1em;
    width: 100%;
    border: 0.5px solid #eee;
    border-radius: 7px;
}

input:focus {
    border: 0.5px solid #333;
}

button {
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

button,
a {
    cursor: pointer;
}

#createAccount,#SendOtpBtn {
    color: #eee;
    background: #06bbcc;
}

.login {
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #000;
}

    .login *,
    small {
        margin-top: 15px;
        text-align: center;
        font-size: 16px;
        opacity: 0.7;
    }

a {
    opacity: 1;
}

small {
    font-size: 0.7em;
}

@media (max-width: 650px) {
    section {
        width: 100%;
    }

    #loginForm {
        width: 100% !important;
    }

    #cover {
        display: none;
    }
    sectionn {
        max-height: 600px !important;
        min-height: 480px;
        }
    .lo{
        height:auto !important;
    }
    .blinking-text {
        font-size: 16px !important;
          }
}
@media(min-width:390px) and (max-width:991px)
{
    sectionn {
        max-height: 510px;
        min-height: 640px !important;
        height: 90vh;
        max-width: 950px;
        width: 90vw;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}
@media(min-width:991px) and (max-width:2000px) {
    sectionn {
        max-height: 500px;
        min-height: 500px !important;
        height: 90vh;
        max-width: 950px;
        width: 90vw;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}
#verifyOtpBtn {
    color: #eee;
    background: #122243;
}
@keyframes blink {
    0% {
        opacity: 1;
        color: red;
    }

    25% {
        opacity: 0;
        color: blue;
    }

    50% {
        opacity: 1;
        color: green;
    }

    75% {
        opacity: 0;
        color: yellow;
    }

    100% {
        opacity: 1;
        color: purple;
    }
}

.blinking-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    animation: blink 2s infinite; /* Increased time to make the transition smoother */
}