/* Variables específicas de la marca */

body {
    background-color: var(--bg-dark);
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* Header & Logo */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Card de Login */
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-top-bar {
    height: 4px;
    background: var(--primary);
}

.card-content {
    padding: 40px;
}

h2 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

.subtitle {
    color: var(--text-main);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Formulario e Inputs */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 8px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #060a11;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0 12px;
    transition: 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(159, 239, 0, 0.2);
}

.prefix {
    color: var(--primary);
    font-family: var(--font-mono);
    margin-right: 10px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 1rem;
}

/* Botón */
.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.login-btn:hover {
    background: #b4ff1a;
    transform: translateY(-1px);
}

/* Footer Links */
.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

.auth-footer a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.2s;
}

.auth-footer a:hover {
    color: var(--primary);
}

.divider {
    color: #2d3748;
    margin: 0 10px;
}

/* Status bar */
.system-status {
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(159, 239, 0, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(159, 239, 0, 0); }
}