*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    background-image: url(./backgroudn.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-color:black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.wrapper{
    backdrop-filter: blur(5px);

    box-shadow: 0px 0px 2rem #00CDAC;

    padding: 2rem;
    border-radius: 1rem;
    border: 5px solid black;
    width: 40%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.login>h2{
    font-size: 3rem;
}
.login>h2:hover{
    /* color: #00CDAC; */
    text-shadow: 0px 0px 2rem #00CDAC;
}
.input{
    font-size:1.3rem;
    /* background-color: orange; */
    /* border: 1px solid black; */
    width: 100%;
    height: 8%;
    border-radius: 1.5rem;
    /* padding: 0.5rem; */
    background-color: none;
    /* border:  solid transparent; */
}
.input>:hover{
    color: #00CDAC;
    
    /* box-shadow: 0px 0px 1rem #00CDAC; */
}
input:hover{
    box-shadow: 0px 0px 1rem #00CDAC;

}
.remember-password{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* gap: 3rem; */
    font-size: 1.3rem;
}
.remember-password:hover{
    color: #00CDAC;
}

.input>input{
    /* text-decoration-line: none; */
    /* list-style: none; */
    font-size: 1.2rem;
    border: none; 
    outline: none;
    padding: 0.5rem;
border-radius: 1.5rem;
        width: 100%;
    height: 100%;
    /* position: relative; */

}
.input{
    position: relative;
}
.fa-solid{
    color: black;
    position:absolute;
    right: 10px;
    top: 5px;
    font-size: 1.3rem;
}
.but-log{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.but-log>button
{
    height: 3rem;
        border: none; 
    outline: none;
    font-size:1.3rem;
    width: 45%;
    border-radius: 1.5rem;
    background-color: none;
}
button:hover{
    box-shadow: 0px 0px 2rem #00CDAC;
    color: #00CDAC;
}
.register>p{
    font-size: 1.3rem;
}
p>a{
    font-size:1.1rem;
color: #00CDAC;
}

a{
    text-decoration: none;
    color: #00CDAC;
}
@media (max-width:1520px){
    .wrapper{
            width: 50%;
height: 70%;
    }
}
@media (max-width:787px){
    .wrapper{
            width: 60%;
height: 75%;
    }
.but-log>button{
    width: 6rem;
    height: 2rem;
}
.remember-password{
    font-size: 1rem;
}
}
@media (max-width:540px){
    .login>h2{
        font-size: 2.5rem;
    }
    .register>p{
        font-size: 1rem;
    }
.remember-password{
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.wrapper{
    min-width:250px;
    width: 90%;
}
}
