/* ==========================================
   LOGIN PAGE
========================================== */

.login-page{
    width:100%;
    min-height:calc(100vh - 72px);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px 16px;

    background:#18191a;
}

/* ==========================================
   CONTAINER
========================================== */

.login-container{
    width:100%;
    max-width:460px;
}

/* ==========================================
   CARD
========================================== */

.login-card{

    background:#242526;

    border:1px solid #3a3b3c;

    border-radius:16px;

    padding:35px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);
}

/* ==========================================
   HEADER
========================================== */

.login-header{
    text-align:center;
    margin-bottom:28px;
}

.login-header h1{
    margin:0 0 10px;

    color:#ffffff;

    font-size:30px;
    font-weight:700;
}

.login-header p{
    margin:0;

    color:#b0b3b8;

    font-size:15px;
    line-height:1.5;
}

/* ==========================================
   FORM
========================================== */

.login-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{

    margin-bottom:8px;

    color:#e4e6eb;

    font-size:14px;
    font-weight:600;
}

.form-group input{

    width:100%;
    height:50px;

    border:1px solid #3a3b3c;

    border-radius:10px;

    background:#18191a;

    color:#ffffff;

    padding:0 15px;

    font-size:15px;

    outline:none;

    transition:.2s;
}

.form-group input:focus{
    border-color:#2374e1;
}

.form-group input::placeholder{
    color:#8a8d91;
}

/* ==========================================
   SENHA
========================================== */

.password-area{
    position:relative;
}

.password-area input{
    padding-right:55px;
}

.toggle-password{

    position:absolute;

    right:8px;
    top:50%;

    transform:translateY(-50%);

    width:40px;
    height:40px;

    border:none;

    background:transparent;

    cursor:pointer;

    font-size:18px;
}

/* ==========================================
   LINKS
========================================== */

.login-options{
    text-align:right;
}

.login-options a{

    color:#2d88ff;

    text-decoration:none;

    font-size:14px;
}

.login-options a:hover{
    text-decoration:underline;
}

/* ==========================================
   BOTÃO
========================================== */

.btn-login-submit{

    width:100%;
    height:50px;

    border:none;

    border-radius:10px;

    background:#2374e1;

    color:#ffffff;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.btn-login-submit:hover{
    background:#1b66ca;
}

/* ==========================================
   CADASTRO
========================================== */

.register-link{

    text-align:center;

    color:#b0b3b8;

    font-size:14px;
}

.register-link a{

    color:#2d88ff;

    text-decoration:none;

    font-weight:600;
}

.register-link a:hover{
    text-decoration:underline;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:768px){

    .login-card{
        padding:28px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:576px){

    .login-page{
        padding:20px 12px;
    }

    .login-card{
        padding:22px;
        border-radius:14px;
    }

    .login-header h1{
        font-size:26px;
    }

    .form-group input,
    .btn-login-submit{
        height:48px;
    }

}