/* Estilos melhorados para os links da página de login */

/* Estilo para o link "Esqueceu a senha?" */
.forgot-password {
    color: #4cc9f0; /* Cor azul brilhante */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.forgot-password:hover {
    color: #00d4ff; /* Cor mais brilhante no hover */
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.forgot-password::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #4cc9f0, #00d4ff);
    transition: width 0.3s ease;
}

.forgot-password:hover::after {
    width: 100%;
}

/* Estilo para o link "Cadastre-se" */
.form-footer a {
    color: #7209b7; /* Cor roxa vibrante */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.form-footer a:hover {
    color: #9d4edd; /* Cor mais clara no hover */
    text-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.form-footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #7209b7, #9d4edd);
    transition: width 0.3s ease;
}

.form-footer a:hover::after {
    width: 100%;
}

/* Estilo para o container de opções do formulário */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilo para o rodapé do formulário */
.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}