/* ============================================
   ESTILOS ESPECÍFICOS DE ACCESO - MAIA
   ============================================ */

.user-login-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    align-items: start;
}

.user-login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.user-login-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #5a67d8;
    font-size: 1.6rem;
}

.user-login-text {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.user-login-text strong {
    color: #5a67d8;
}

.user-login-highlight {
    margin: 2rem 0;
    font-style: italic;
    font-weight: 500;
}

.user-login-field {
    margin-bottom: 1.5rem;
}

.user-login-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.user-login-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.2s;
}

.user-login-input:focus {
    outline: none;
    border-color: #5a67d8;
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}

.user-login-button-full {
    width: 100%;
    padding: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.user-login-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
    text-align: center;
}

.user-login-link {
    color: #5a67d8;
    text-decoration: none;
    font-weight: 500;
}

.user-login-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .user-login-container {
        grid-template-columns: 1fr;
    }
    .user-login-card {
        padding: 1.8rem;
    }
}