/* FONTES EXTERNA - POPPINS */
@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');

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: url(../images/wallpaper.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 420px;
    background-color: transparent;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    padding: 30px 36px 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

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

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #c5c5c5;
}

.input-box i {
    position: absolute;
    right: 20px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}
.remember-forgot label input {
    accent-color: #fff;
    margin-right: 5px;
}
.remember-forgot a {
    display: inline-block;
    color: #fff;
}
.remember-forgot a:hover {
    text-decoration: underline;
}

button.login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 40px;
    padding: 9px 0px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 40px 0px 22px;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease;
}
button.login:hover {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.register-link {
    font-size: 14px;
}
.register-link a {
    color: #fff;
    font-weight: bold;
    margin-left: 4px;
}
.register-link a:hover {
    text-decoration: underline;
}


/* RESPONSIVIDADE */
@media (min-width:401px) and (max-width:500px) {
    .container {
        max-width: 346px;
        padding: 20px 26px 26px;
    }

    .remember-forgot {
        flex-direction: column;
        gap: 6px;
    }

    button.login {
        margin: 26px 0px 22px;
    }
}

@media (max-width:400px) {
    .container {
        max-width: 260px;
        padding: 14px 16px 16px;
    }

    .remember-forgot {
        flex-direction: column;
        gap: 6px;
    }

    button.login {
        margin: 26px 0px 22px;
    }
}