/* ================= BASE ================= */

html,
body {
    height: 100%;
    margin: 0 !important;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= LOGIN ORIGINAL ================= */

body {
    background: linear-gradient(135deg, #0f2747, #081a2f);
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 420px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.login-logo {
    width: 120px;
}

.login-title {
    font-weight: 600;
    margin-bottom: 25px;
}

.login-input {
    height: 45px;
    border-radius: 8px;
}

.btn-login {
    height: 45px;
    border-radius: 8px;
    font-weight: 500;
    background: linear-gradient(90deg, #1f6fe5, #1155c7);
    border: none;
}

.btn-login:hover {
    background: linear-gradient(90deg, #1155c7, #0d47a1);
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-question {
    font-weight: 600;
    font-size: 18px;
}

.captcha-input {
    width: 100px;
}

/* ================= PANTALLA SELECCION EMPRESA ================= */

/* centrado absoluto real */
.orbix-wrapper {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: #ffffff;
}

/* bloque gris */
.orbix-bg {
    background: #eef1f4;
    padding: 30px 40px 40px 40px;
    border-radius: 20px;
    width: 600px;
    max-width: 92vw;
    text-align: center;
    transform: translate(1050px, 150px) !important;
}

@media (max-width: 1200px) {
    .orbix-bg {
        transform: translateX(200px);
    }
}

@media (max-width: 768px) {
    .orbix-bg {
        transform: translateX(0);
    }

}

/* logo */
.orbix-header img {
    width: 220px;
    display: block;
    margin: 0 auto 15px auto;
}

/* formulario blanco */
.orbix-panel {
    background: white;
    width: 460px;
    max-width: 100%;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    /* CENTRADO REAL */
}

/* labels */
.orbix-panel label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

/* selects */
.orbix-panel select {
    height: 48px;
    border-radius: 10px;
}

/* boton principal */
.orbix-primary-btn {
    height: 50px;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, #1f6fe5, #1a5fc1);
    border: none;
    color: white;
}

.orbix-primary-btn:hover {
    background: linear-gradient(90deg, #1a5fc1, #154a96);
}

.orbix-alert {
    background: #dc3545;
    color: white;
    padding: 14px 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

/* estado oculto */
.orbix-alert.hide {
    opacity: 0;
    transform: translateY(-10px);
}