/* FUNDO */

.login-page {

    min-height: 10vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px 20px;

    background-color: #f5f5f5;
}

/* CONTAINER */

.login-container {

    width: 100%;

    max-width: 450px;
}

/* VOLTAR */

.voltar-home {

    display: inline-block;

    margin-bottom: 20px;

    color: #666;

    font-size: 14px;

    transition: 0.2s;
}

.voltar-home:hover {

    color: #111;
}

/* CARD */

.login-card {

    background-color: #fcfcfc;

    border-radius: 24px;

    padding: 40px;

    border: 1px solid #ececec;

    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* HEADER */

.login-header {

    text-align: center;

    margin-bottom: 35px;
}

.login-header h1 {

    font-size: 2rem;

    color: #111;

    margin-bottom: 10px;
}

.login-header p {

    color: #666;

    font-size: 15px;

    line-height: 1.5;
}

/* ALERTA */

.alerta-erro {

    background-color: rgba(255, 77, 77, 0.08);

    border: 1px solid rgba(255, 77, 77, 0.25);

    color: #d93939;

    padding: 14px;

    border-radius: 14px;

    margin-bottom: 20px;

    font-size: 14px;
}

/* FORM */

.form-group {

    margin-bottom: 22px;
}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #333;
}

/* INPUT */

.form-group input {

    width: 100%;

    height: 54px;

    padding: 0 16px;

    border-radius: 14px;

    border: 1px solid #dcdcdc;

    background-color: #ffffff;

    font-size: 15px;

    transition: 0.2s;

    outline: none;
}

.form-group input:focus {

    border-color: #111;

    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

/* SENHA */

.password-wrapper {

    position: relative;
}

.password-wrapper input {

    padding-right: 55px;
    
}

.toggle-password {

    position: absolute;

    top: 50%;

    right: 14px;

    transform: translateY(-50%);

    border: none;

    background: none;

    cursor: pointer;

    font-size: 18px;

    padding: 0;
}

/* ESQUECEU SENHA */

.login-extra {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 25px;
}

.login-extra a {

    color: #555;

    font-size: 14px;

    transition: 0.2s;
}

.login-extra a:hover {

    color: #111;
}

/* BOTÃO */

.btn-login {

    width: 100%;

    height: 56px;

    border: none;

    border-radius: 16px;

    background-color: #111;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s;
}

.btn-login:hover {

    transform: translateY(-2px);

    opacity: 0.95;
}

/* CADASTRO */

.cadastro-link {

    margin-top: 30px;

    text-align: center;
}

.cadastro-link p {

    color: #666;

    font-size: 14px;
}

.cadastro-link a {

    color: #111;

    font-weight: 600;

    transition: 0.2s;
}

.cadastro-link a:hover {

    opacity: 0.7;
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .login-card {

        padding: 30px 22px;
    }

    .login-header h1 {

        font-size: 1.7rem;
    }
}