@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html {
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100vw;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #2384cd 0%, #a669b4 50%, #da2760 100%);
    color: #ffffff;
}

.ctaDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Para centrarlo perfectamente en el medio */
    width: 80%;  /* Ancho definido. Puedes cambiar este valor según lo que desees. */
    max-width: 600px; /* Ancho máximo para que no sea demasiado grande en pantallas grandes */
    height: 60%;  /* Alto definido. Puedes cambiar este valor según lo que desees. */
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    border-radius: .25rem;  /* Radio de borde al estilo Bootstrap */
    padding: 1.25rem;  /* Padding al estilo Bootstrap */
    border: 1px solid rgba(0, 0, 0, 0.125); /* Borde ligero al estilo Bootstrap */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);  /* Sombra ligera al estilo Bootstrap */
}

.buttonGroup {
    display: flex;
    gap: 1rem;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #bf266f !important;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

button img {
    vertical-align: middle; /* Alinea verticalmente el ícono con el texto */
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

button:hover {
    background-color: #4c20b0;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.main-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('/logo_text.svg') center calc(50% + 80px) no-repeat,
        linear-gradient(to bottom, #2384cd 0%, #a669b4 50%, #da2760 100%);
    background-size: 150px auto, cover;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    opacity: 0;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 8px solid #6f2cf4;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.show {
    opacity: 1;
    visibility: visible;
}

.hide {
    opacity: 0;
    visibility: hidden;
}
