/* Navbar Styles - Barra mais larga (mais alta) */
.ui.fixed.menu {
    height: 60px;
    /* Aumenta a altura da barra */
    display: flex;
    align-items: center;
}

.ui.main.container {
    margin-top: 8em;
    /* Ajusta margem do conteúdo para não ficar escondido pela barra */
}

/* Login Page Styles */
.login-container {
    height: 70vh;
    /* Reduce height so center is higher */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fa;
    padding-bottom: 10vh;
    /* Shifts visual center slightly up */
}

.login-card {
    background: white;
    padding: 2rem;
    /* Slightly more padding */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    /* Wider */
    text-align: center;
}

.login-header-icon {
    width: 60px;
    height: 60px;
    background-color: #e6f0ff;
    /* Light blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.login-header-icon i {
    font-size: 1.5rem;
    color: #2185d0;
    /* Semantic UI Blue */
    margin: 0;
}

.login-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.login-form .field {
    text-align: left;
    margin-bottom: 1.2rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.login-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}