:root {
    /* Paleta de colores extraída de la imagen */
    --bg-color: #5e4b4d; /* Fondo marrón/rojizo oscuro */
    --card-bg: #ffffff;
    --text-dark: #0f172a;
    --text-secondary: #64748b;
    --accent-red: #a81c1c; /* Color de la línea y detalles del escudo */
    --btn-bg: #262626;     /* Color oscuro del botón */
    --btn-hover: #000000;
    --font-main: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    /* Gradiente sutil para dar profundidad como en la foto */
    background: linear-gradient(135deg, #eaa917 52%, #f0f0f0 52%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor principal (Tarjeta) */
.login-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 420px; /* Ancho máximo similar a la imagen */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* Sombra suave */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    width: 80px; /* Ajustar según el tamaño real del logo */
    height: auto;
    margin-bottom: 20px;
}

/* Tipografía */
h1 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

h2 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Línea Roja */
.divider {
    width: 50px;
    height: 4px;
    background-color: var(--accent-red);
    border-radius: 2px;
    margin: 0 auto 25px auto;
}

.instruction-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Botón Microsoft */
.btn-microsoft {
    background-color: var(--btn-bg);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid transparent;
}

.btn-microsoft:hover {
    background-color: var(--btn-hover);
}

.icon-container {
    background: white;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 2px; /* Cuadrado sutil del logo */
}

/* Footer */
.footer {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background-color: #e2e8f0;
    width: 100%;
    margin-bottom: 20px;
}

.forgot-password {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--text-dark);
}

.copyright {
    color: #94a3b8;
    font-size: 0.7rem;
    line-height: 1.4;
}