/* Color palette variables */
:root {
    --primary-red: #ED4C0D;
    --primary-orange: #F5A0DF;
    --primary-blue: #0535FA;
    --primary-light-blue: #41B8E6;
    --primary-green: #00BC5A;
    --primary-light-green: #55BE5A;
    --primary-pink: #FF0F64;
    --primary-magenta: #FF46B7;
    --primary-gray: #C6C6C6;
    --primary-black: #000000;
    --primary-burgundy: #BA1A58;
}

/* Base styles */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    overflow-x: hidden;
}


/* Logo styling */
.logotipo {
    max-width: 300px; /* Ajusta este valor según el tamaño que desees */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-top: 5%; /* Opcional: Ajusta el margen superior si es necesario */
}

h4 .custom-bienvenido {
    font-size: 2.5rem !important;
    font-weight: normal !important;
    background-color: transparent !important; /* Fondo transparente */
}

.secondary-logo {
    max-width: 20%;
    height: auto;
    margin: 0 auto;
}

/* Button styling using the color palette */
.btn-custom-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

body .btn.btn-custom-primary {
    background-color: #003366    !important;
    border-color: #003366 !important;
    color: white !important;
}

body .btn.btn-custom-primary:hover {
    background-color: #66CCFF !important;
    border-color: #66CCFF !important;
}

/* Alternative button styles from the palette */
.btn-custom-green {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-custom-green:hover {
    background-color: var(--primary-light-green);
    border-color: var(--primary-light-green);
}

.btn-custom-red {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.btn-custom-red:hover {
    background-color: #d43c00; /* Darker red */
    border-color: #d43c00;
}

.btn-custom-pink {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
}

.btn-custom-pink:hover {
    background-color: var(--primary-magenta);
    border-color: var(--primary-magenta);
}

/* Carousel styling */
.carousel-item {
    opacity: 0;
    transition: opacity 5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    object-position: left;
}

/* Carousel indicators styling */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-gray);
    opacity: 0.5;
}

.carousel-indicators button.active {
    background-color: var(--primary-red);
    opacity: 1;
}

/* Form styling */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(5, 53, 250, 0.25);
}

/* Responsive adjustments */
@media (min-width: 1005px) {
    .h-custom-2 {
        height: 100%;
    }
}

/* Medium screens */
@media (max-width: 991px) {
    .login-column {
        padding-bottom: 2rem;
    }
    
    .logotipo {
        margin-top: 3%;
    }
}

/* Small screens */
@media (max-width: 767px) {
    .login-column {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .h-custom-1 {
        flex: 1;
    }
    
    .logotipo {
        margin-top: 2rem;
        max-width: 80%;
    }
    
    form {
        width: 100% !important;
    }
    
    .secondary-logo {
        max-width: 40%;
        margin: 0 auto;
        display: block;
    }
}

/* Extra small screens */
@media (max-width: 575px) {
    .logotipo {
        margin-top: 1.5rem;
    }
    
    .btn-custom-primary {
        font-size: 18px;
        padding: 8px 16px;
    }
}   
