@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cabin", sans-serif;
}

body{
        display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}



.container{
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: #fff;
    padding: 30px 40px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.22) 0px 30px 60px -30px;
    backdrop-filter: blur(5px);
}


.container h1{
text-align: center;
margin-bottom: 30px;
font-size: 36px;
color: #ffffff; 
letter-spacing: 2px;
text-transform: uppercase;
text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

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

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

}


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

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

.lembrarSenha{
    display: flex;
    justify-content: space-between;
    margin: -15px 0 15px;
}


.lembrarSenha label input{
accent-color: #fff;
margin-right: 5px;
}

.lembrarSenha a{ 
text-decoration: none;
color: #fff;
}

button{
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 40px;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover{
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    color: #fff;
}


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

.registrar a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.registrar a:hover{
    text-decoration: underline;
}
/* 🎥 VÍDEO DE FUNDO */
#bg-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}