:root {
    --azul-color: #173195;
    --amarillo-color: #FFD000;
    --rosa--color: #FF0078;
    --background-color: #f4f4f4;
    --text-color: #333;
    --hover-azul: #00B1FF;
    --hover-amarillo: #FFF200;
    --hover-gris: #cfcfcf;
}

/* LOGIN SIREX - Estilos exclusivos */
.sirex-login-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* HEADER */
.sirex-header {
    background-color: var(--azul-color);
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sirex-header-logo {
    height: 54px;
}

/* LOGIN */
.sirex-login-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sirex-login-box {
    background-color: var(--azul-color);
    padding: 25px 23px;
    border-radius: 15px;
    text-align: center;
    width: 305px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.sirex-login-icon {
    width: 100px;
    margin-bottom: 20px;
}

/* INPUTS */
.sirex-input-group {
    position: relative;
    margin-bottom: 17px;
}

.sirex-input {
    width: 84%;
    padding: 12px 12px 10px 40px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
}

.sirex-input-group i {
    position: absolute;
    left: 30px;
    top: 12px;
    color: #aaa;
}

/* BOTÓN */
.sirex-btn-login {
  padding: 0.45rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, var(--amarillo-color), #ffcc33);
  color: #222;
}

.sirex-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, var(--hover-amarillo), #e6b800);
}

.sirex-btn-login:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ENLACE CONTRASEÑA */
.sirex-forgot-password {
    margin-top: 15px;
}

.sirex-forgot-password a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s;
}

.sirex-forgot-password a:hover {
    color: var(--amarillo-color);
}

/* DECORACIONES */
.sirex-decoracion-circuito {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 340px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.sirex-decoracion-circuito1 {
    position: absolute;
    top: 69px;
    right: 0;
    width: 340px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1) rotate(90deg);
}

/* FOOTER */
.sirex-footer {
    position: relative;
}

.sirex-barra-inferior {
    background-color: var(--amarillo-color);
    color: black;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.sirex-footer-logo {
    position: absolute;
    bottom: 65px;
    right: 13px;
    width: 146px;
}