:root {
    --color-negro-profundo: #121212;
    --color-azul-vibrante: #007BFF;
    --color-azul-hover: #0056b3;
    --color-blanco: #FFFFFF;
    --font-titulos: 'Exo 2', sans-serif;
    --font-texto: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-texto);
    background-color: var(--color-blanco);
}

/* Columna de Branding (Izquierda) */
.branding-column {
    background: linear-gradient(135deg, var(--color-negro-profundo) 0%, var(--color-azul-vibrante) 100%);
    animation: gradient-animation 10s ease infinite;
    background-size: 200% 200%;
}

/* Animación para el degradado */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.branding-column h1 {
    font-family: var(--font-titulos);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Contenedor del formulario (Derecha) */
.login-form-container {
    width: 100%;
    max-width: 450px;
}

.login-form-container h2 {
    font-family: var(--font-titulos);
    color: #333;
}

/* Estilos de los inputs con iconos */
.input-group-text {
    background-color: transparent;
    border-right: 0;
    color: var(--color-azul-vibrante);
}

.input-group .form-control {
    border-left: 0;
}

.form-control:focus {
    border-color: var(--color-azul-vibrante);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Botón principal */
.btn-primary {
    background-color: var(--color-azul-vibrante);
    border-color: var(--color-azul-vibrante);
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-azul-hover);
    border-color: var(--color-azul-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Enlaces */
a {
    color: var(--color-azul-vibrante);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsividad para móviles */
@media (max-width: 767.98px) {
    .login-form-container {
        padding-top: 2rem;
    }
}
/* ===== Estilos para el selector de país ===== */
.country-code-select {
    flex: 0 0 auto; /* No permite que el select crezca */
    width: auto; /* Ancho automático basado en el contenido */
    max-width: 120px; /* Ancho máximo para que no sea muy grande */
    border-right: 0; /* Elimina el borde derecho para fusionarse con el input */
}

/* Ajusta el color del borde del input de teléfono al hacer focus */
.country-code-select:focus,
.country-code-select:focus-within {
    z-index: 5;
    border-color: var(--color-azul-vibrante);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}
/* =================================================================
   ESTILOS PARA EL BOTÓN DE ACCIÓN FLOTANTE (FAB)
   ================================================================= */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.fab-main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-azul-vibrante); /* Usamos tu color azul */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fab-main-button:hover {
    transform: scale(1.1);
}

.fab-main-button i {
    transition: transform 0.3s ease;
}

.fab-container.active .fab-main-button i {
    transform: rotate(90deg);
}

.fab-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.fab-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--color-azul-vibrante);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0); /* Oculto por defecto */
    opacity: 0;
}

.fab-item:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

/* Animación para mostrar los botones */
.fab-container.active .fab-item {
    transform: scale(1);
    opacity: 1;
}

/* Efecto de aparición escalonada */
.fab-container.active .fab-item:nth-child(1) { transition-delay: 0.2s; }
.fab-container.active .fab-item:nth-child(2) { transition-delay: 0.15s; }
.fab-container.active .fab-item:nth-child(3) { transition-delay: 0.1s; }
.fab-container.active .fab-item:nth-child(4) { transition-delay: 0.05s; }