
/* Login page */
/* --- LOGIN CONTAINER --- */
.accountLoginTable { 
    margin: 80px auto !important; /* Centra el cuadro */
    width: 400px !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important; /* Sombra moderna */
    padding: 20px !important;
    border: 1px solid #e1e4e8 !important;
}

/* --- CABECERA (LOGO O TÍTULO) --- */
SPAN.banner300ImageTitle {
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    font-size: 22pt !important;
    font-weight: 600 !important; 
    color: #2c3e50 !important;
    display: block !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

/* --- LABELS (Cuenta, Usuario, Password) --- */
TD.accountLoginFieldLabel {
    padding-bottom: 5px !important;
    text-align: left !important;
    font-family: sans-serif !important;
    font-size: 10pt !important;
    font-weight: bold !important;
    color: #586069 !important;
    text-transform: uppercase !important;
}

/* --- INPUTS (Los cuadros de texto) --- */
/* OpenGTS usa inputs estándar, así que les daremos estilo global aquí */
.accountLoginFormTable input[type="text"], 
.accountLoginFormTable input[type="password"] {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #d1d5da !important;
    border-radius: 6px !important;
    font-size: 11pt !important;
    background-color: #fafbfc !important;
    margin-bottom: 10px !important;
    box-sizing: border-box !important; /* Evita que el input se salga del cuadro */
}

/* --- BOTÓN DE LOGIN --- */
/* Buscamos el botón dentro de la tabla */
input[type="submit"], .loginButton {
    width: 100% !important;
    background-color: #2ea44f !important; /* Verde moderno estilo GitHub */
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-size: 12pt !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-top: 10px !important;
}

input[type="submit"]:hover {
    background-color: #2c974b !important;
}

/* --- QUITAR BORDES Y SEPARADORES VIEJOS --- */
.accountLoginCell, .accountLoginTextCell, TABLE.accountLoginFormTable {
    border: none !important;
    background: transparent !important;
}