/* --------------------------------------------------
   PALETA ARIMAST DIGITAL
-------------------------------------------------- */
:root {
    --bg: #050816;
    --bg-alt: #0a1024;
    --card: rgba(17, 23, 45, 0.65);
    --accent: #0d8bff;
    --accent-soft: rgba(13, 139, 255, 0.3);
    --accent-strong: rgba(13, 139, 255, 0.7);
    --text: #f5f7ff;
    --muted: #9aa4c5;
    --radius: 18px;
    --shadow: 0 20px 45px rgba(0,0,0,0.55);
}

/* --------------------------------------------------
   RESET / BODY
-------------------------------------------------- */
body.auth-body {
    margin: 0;
    background: linear-gradient(135deg, #030617, #09112d);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --------------------------------------------------
   CONTENEDOR LOGIN
-------------------------------------------------- */
.login-container {
    width: 90%;
    max-width: 420px;
    padding: 40px 30px;
    background: var(--card);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    text-align: center;
}

/* Fade-in */
.fade {
    animation: fadeIn 0.55s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
   TITULOS
-------------------------------------------------- */
.title {
    font-size: 30px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 25px;
}

/* --------------------------------------------------
   INPUTS
-------------------------------------------------- */
.input-group {
    width: 100%;
    position: relative;
    margin-top: 15px;
}

input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    transition: 0.25s ease;
}

input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-soft);
    outline: none;
}

/* Password eye */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: var(--muted);
    transition: 0.25s;
}

.toggle-password:hover {
    color: var(--accent);
}

/* --------------------------------------------------
   BOTONES
-------------------------------------------------- */
.btn-primary {
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    margin-top: 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 0 12px var(--accent-soft);
    transition: 0.25s ease;
}

.btn-primary:hover {
    background: #0b7be0;
    transform: translateY(-1.5px);
}

/* --------------------------------------------------
   SWITCH LOGIN / REGISTER
-------------------------------------------------- */
.switch-text {
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
}

.switch-text span {
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
}

/* --------------------------------------------------
   MENSAJES
-------------------------------------------------- */
.auth-message {
    margin-top: 15px;
    color: #ff5c5c;
    font-size: 14px;
}

/* --------------------------------------------------
   FIX: MENÚ INFERIOR MUY ALTO (EN TODA APP)
-------------------------------------------------- */
.bottom-menu {
    bottom: 0 !important;
    padding-bottom: 6px !important;
}
