.hero {
    background: #f8faf9; /* Fundo cinza bem claro e neutro */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}


.hero-content {
    width: 100%;
    max-width: 600px;
    padding: var(--space-md);
}

.login-card {
    /*background-color: #20c19e;*/
    background: linear-gradient(to right, #1ab394, #20c19e, #36d1b2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease;
}

.login-logo {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.login-logo img {
    height: 80px;
    width: auto;
}

/* Formulários */
.form-group {
    margin-bottom: var(--space-md);
    font-weight: 500;
    color: #FFF;

}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: #FFF;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-with-icon input {
    width: 100%;
    padding: var(--space-sm) var(--space-sm) var(--space-sm) 40px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.1);
}

/* Botões */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsividade para mobile */
@media (max-width: 767px) {
    .login-card {
        padding: var(--space-lg);
    }
    
    .login-logo img {
        height: 60px;
    }
}
.login-header
{
    text-align :center;
    margin-bottom : var(--space-lg);
    font-size: 1rem;
    color: var(--white);
}
.user-profile {
    text-align: center;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

#profileEmail {
    font-size: 0.7em;          /* Reduz um pouco o tamanho */
    word-break: break-all;     /* Quebra palavras longas */
    max-width: 100%;
    display: inline-block;     /* Permite que o ellipsis funcione */
    overflow: hidden;
    text-overflow: ellipsis;
}