@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: content-box;
       font-family: "Inter", serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
}
#logo{
    position: absolute;
    left: 5%;
    top: 5%;
    height: 5vw;
    width: 5vw;
}

.container{
    background-color: #F8F8F8;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-signin{
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    gap: 1vw;
}

.form-signin-heading{
    color: #212529;
    font-family: "Inter", serif;
    font-size: clamp(35px, 3.5vw, 80px);
    font-weight: 700;
}
.form-control {
    font-family: "Inter", serif;
    width: 29vw;
    min-width: 300px;
    height: 2.5vw;
    min-height: 25px;
    border-radius: 6000px;
    border: 1px solid rgba(0, 0, 0, 0.521);
    text-align: left;
    padding-left: 1vw;
    font-size: 1rem;
    font-weight: 550;
    background-color: #F8F8F8;
}

.password-wrapper {
    position: relative;
    width: 30vw;          /* ✅ match exactly */
    min-width: 300px;     /* ✅ match input */
    height: 2.5vw;
    min-height: 25px;
     border: 1px solid rgba(0, 0, 0, 0.521);
    border-radius: 6000px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
}

.password-wrapper .form-control {
    border: none;
    width: 100%;
    padding-right: 40px; /* space for eye icon */
}

.toggle-icon {
    position: absolute;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer; 
    width: 30px;
}

.toggle-icon:hover {
    color: #313131;

}




.form-signin button{
    background-color: #212529;
    height: 3vw;
    padding: 0px 0px;
    width: 100%;
    border-radius: 6000px;
    font-size: 1.3vw;
    font-weight: 400;
    color: white;
    border: none;
}

#panel{
    background-color: #F8F8F8;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#panel #circle{
    height: 95%;
    width: 95%;
    border-radius: 5%;
    background-color: #f5edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

 #slideshow {
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transform: translateX(0);
        opacity: 1;
    }

    /* Slide out to left */
    .slide-out {
        transform: translateX(-100%);
        opacity: 0;
    }

    /* Slide in from right */
    .slide-in {
        transform: translateX(100%);
        opacity: 0;
    }
    .slide-in:not(.slide-out) {
        transform: translateX(0);
        opacity: 1;
    }

@media screen and (width < 900px) {
    
    #panel {
        display: none;
    }

    .form-signin{
        gap: 12px;
    }

    .form-control{
        font-size: 15px;
    }

    .toggle-icon {
        width: 18px;
    }

    .form-signin button{
        margin-top: 22px;
        height: 20px;
        font-size: 10px;
    }
}
