@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: white;
    text-decoration: none;
    
}

body{
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: url(img/fundo.jpg);
    background-attachment:initial;
    margin: 0;
    background-size: cover;
    backdrop-filter: blur(8px);
}


.container{
    width: 420px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0px 0px 94px -21px rgb(0, 0, 0);
    color: white;
    margin: 0px 30px;
}



.container h1{
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.container a{
    color: white;
}

.input-box{
    position: relative;
    width: 100;
    height: 50px;
    margin: 30px 0px;

}

.input-box input{
    width: 100%;
    height: 100%;
    background-color: rgb(238, 238, 238);
    border: 2px solid rgba(66, 65, 65, .2);
    outline: none;
    font-size: 16px;
    color: black;
    padding: 20px 45px 20px 20px;
    border-radius: 10px;
}
.input-box input::placeholder{
    color: rgb(66, 65, 65);
}
.input-box i{
    position: absolute;
    right: 20px;
    color: black;
    font-size: 20px;
    top: 50%;	
    transform: translateY(-50%);
    background: transparent;
}
.remember-forgot{
    display: flex;
    justify-content: space-between;
    margin: -15px 0px 15px;
}

.remember-forgot label input{
    accent-color: rgb(66, 65, 65);
}
.remember-forgot a:hover{
    text-decoration: underline;
    color: rgb(66, 65, 65);
 }

 .login{
    width: 100%;
    height: 50px;
    color: black;
    background: white;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.5rem;
    border: 2px solid rgba(66, 65, 65, .2)
 }

 .login:hover{
    border-color: black;
    transform: translateY(-5px) scale(1.03);
    transition: all 0.5s ease;
 }

.register-link{
    text-align: center;
    margin-top: 20px 0 15px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    .container h1 {
        font-size: 28px;
    }

    .input-box {
        margin: 20px 0;
    }

    .login {
        font-size: 1.2rem;
    }

    .register-link {
        font-size: 14px;
    }
}