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

/* BODY */
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    /* IMAGEM + OVERLAY */
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)),
        url("./images/fundo-3.png") center/cover no-repeat;
}

/* CONTAINER */
.container{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 10%;
}

/* CARD */
.card{
    width: 100%;
    max-width: 350px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);

    padding: 35px;
    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 0 15px 40px rgba(0,0,0,0.3);

    animation: fadeIn 0.6s ease;
}

/* ANIMAÇÃO */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER DO FORM */
.icon-form{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:10px;
    margin-bottom:25px;
}

.icon-form img{
   height:200px;
}

.card h2{
    color: white;
    font-size: 26px;
    font-weight: 600;
}

/* FORM */
.form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.form input{
 width: 100%; 
 padding: 12px; 
 border-radius: 8px; 
 border: none; 
 background: #e9eef5;

    outline: none;
    transition: 0.3s;
}

.form input::placeholder{
    color: rgba(0, 0, 0, 0.7);
}

.form input:focus{
    border: 1px solid #fff;
    box-shadow: 0 0 0 2px #ff6a00;
}

/* BOTÃO */
.form button{
    margin-top: 10px;
    padding: 12px;

    border: none;
    border-radius: 10px;

    background: #ff6a00;
    color: white;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ESQUECEU SENHA */
.forgot-password{
    text-align: right;
    font-size: 13px;
}

.forgot-password a{
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.forgot-password a:hover{
    color: white;
}

/* LINK CADASTRO */
.tabs{
    text-align:center;
    margin-top:15px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.login-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    margin-left: 5px;
}

.login-link:hover{
    text-decoration:underline;
}

/* RESPONSIVO */
@media (max-width: 768px){
    .container{
        justify-content: center;
        padding: 20px;
    }

    .card{
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }
}