:root {
    --mm-navy: #1b2a63;
    --mm-teal: #4bbf9b;
    --mm-gray-bg: #f4f6fa;
    --mm-text: #2b2f38;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--mm-text);
    background: var(--mm-gray-bg);
}

.top-bar, .bottom-bar {
    background-color: var(--mm-navy);
    height: 50px;
    width: 100%;
}

/* ---------- LOGIN ---------- */
.login-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 42, 99, 0.12);
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.login-logo {
    max-width: 220px;
    margin-bottom: 24px;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mm-navy);
    margin-bottom: 4px;
}

.login-subtitle {
    color: #6c7280;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.btn-login {
    background-color: var(--mm-navy);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease-in-out;
}

.btn-login:hover {
    background-color: #142050;
    color: #fff;
}

/* ---------- DASHBOARD / PROFILE ---------- */
.dashboard-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.btn-logout {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 20px;
}

.btn-logout:hover {
    background-color: #fff;
    color: var(--mm-navy);
}

.profile-container {
    flex: 1;
    max-width: 780px;
    background: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px 36px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(27, 42, 99, 0.08);
}

.profile-logo {
    /* max-width: 280px;*/
    max-width: 200px;
    margin-bottom: 24px;
}

.profile-header {
    margin-top: 20px;
}

.profile-photo {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.profile-name {
    color: var(--mm-navy);
    font-weight: 700;
}

.profile-area {
    color: var(--mm-navy);
    font-weight: 600;
}

.profile-puesto {
    color: #55596b;
    font-weight: 400;
}

.profile-email {
    color: #55596b;
    margin-top: 6px;
}

.profile-divider {
    border-top: 2px solid var(--mm-gray-bg);
    margin: 32px 0;
}

.institutional-block {
    margin-bottom: 26px;
}

.institutional-title {
    color: var(--mm-navy);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.institutional-text {
    text-align: justify;
    line-height: 1.6;
    color: var(--mm-text);
}

@media (max-width: 576px) {
    .profile-container {
        padding: 28px 18px;
    }
}

.datos-contacto {
    background: #293f85;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
}