/* =============================================================
   login.css — Estilos compartidos de autenticación
   Usado por: login.html, account.html, reset.html,
              forgot.html, verify-email.html
   Ghost's of Lineage II
   ============================================================= */

.account-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: url(../images/bg/2.png) top/cover no-repeat;
}

.account-box {
    width: 100%;
    max-width: 450px;
    background-color: rgba(10, 9, 4, 0.95);
    border: 1px solid rgba(71, 62, 48, 0.61);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.9);
    border-color: rgba(116, 109, 85, 0.8);
}

.account-box h1 {
    color: rgb(237, 224, 203);
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    font-family: 'Roboto', sans-serif;
}

/* --- Grupos de input --- */
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label {
    display: block;
    color: #f5deb3;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
.input-group input {
    width: 100%;
    padding: 12px;
    background: rgba(138, 131, 112, 0.05);
    border: 1px solid rgba(116, 109, 85, 0.3);
    color: #e1e1e1;
    border-radius: 2px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}
.input-group input:focus {
    border-color: #f5deb3;
    background: rgba(138, 131, 112, 0.15);
}

/* --- Botón principal dentro del account-box --- */
.account-box .main_btn {
    margin-top: 10px;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.account-box .main_btn span {
    font-size: 1.8vh !important;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.account-box .main_btn:hover span {
    transform: scale(1.05) !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* --- Links --- */
.register-link {
    color: #b0a99a;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.register-link:hover {
    color: #f5deb3;
    text-shadow: 0 0 8px rgba(245, 222, 179, 0.6);
}

/* --- Separador "Or" --- */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #b0a99a;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}
.separator::before,
.separator::after { content: ''; flex: 1; border-bottom: 1px solid rgba(116, 109, 85, 0.3); }
.separator:not(:empty)::before { margin-right: .25em; }
.separator:not(:empty)::after  { margin-left: .25em; }

/* --- Mensaje del sistema (errores / confirmaciones) --- */
#systemMessage {
    margin-top: 15px;
    font-weight: bold;
    min-height: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #F44336;
}

/* ---- RESPONSIVE DESIGN ---- */
@media screen and (max-width: 576px) {
    .account-wrapper {
        padding: 15px;
        align-items: flex-start;
        padding-top: 60px;
    }
    .account-box {
        padding: 25px 18px;
        max-width: 100%;
    }
    .account-box h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .account-box .main_btn span {
        font-size: 1.6vh !important;
    }
}
