@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    font-family: "Raleway", serif;
    overflow-y: auto;
    overflow-x: hidden;
}

body{
    background-color: #0D1117;
    color: #FFFFFF;
}

.colorGris{
    color: #8B949E !important;
}

.colorGrisv1{
    color: #9198A1;
}

.colorGrisv2{
    color: #8B949E;
}


.letra-gradient-v1 {
    background: linear-gradient(0deg, #078FA4 0%, #7230A9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px; /* Ajusta el tamaño según necesites */
    font-weight: bold;
}

.letra-gradient-v2 {
    background: linear-gradient(90deg, #8D24D2 3%, #7548D9 22%, #3AA2EC 62%, #00FBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para navegadores que lo soporten */
}


.cajaVentanaTitulo{
    background-color: #505459;
    border-radius: 24px;
    color: #FFFFFF;
}

input {
    background: transparent;   /* Quita el fondo */
    border: none;              /* Elimina el borde */
    outline: none;             /* Quita el contorno al enfocar */
    box-shadow: none;          /* Elimina cualquier sombra */
    -webkit-appearance: none;  /* Quita el estilo predeterminado en navegadores WebKit */
    -moz-appearance: none;     /* Quita el estilo en Firefox */
    appearance: none;          /* Quita la apariencia por defecto en otros navegadores */
}

button {
    background: transparent;   /* Quita el fondo */
    border: none;              /* Elimina el borde */
    outline: none;             /* Quita el contorno al enfocar */
    box-shadow: none;          /* Elimina cualquier sombra */
    -webkit-appearance: none;  /* Quita el estilo predeterminado en navegadores WebKit */
    -moz-appearance: none;     /* Quita el estilo en Firefox */
    appearance: none;          /* Quita la apariencia por defecto en otros navegadores */
}

::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-track{
    background: rgba(105, 105, 105, 0.41);
}

::-webkit-scrollbar-thumb{
    background: #5858EE !important;
    border-radius: 20px;
}

html {
    /* Anchura del scrollbar: auto | thin | none */
    scrollbar-width: thin;

    /* Colores del thumb y del track
       (en orden: thumb, track) */
    scrollbar-color: #5858EE rgba(105,105,105,0.41);
}

.btnWhite{
    border: 1px solid #FFFFFF;
}

.btnWhite:hover{
    border: 1px solid #8E47FE;
    color: #8E47FE;
}

/* Estilos generales */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    color: inherit !important;
    transition: background-color 5000s ease-in-out 0s; /* Para evitar que el navegador restablezca el fondo */
}

/* Desactivar autocompletado en todos los navegadores */
input, textarea, select {
    autocomplete: off;
    -webkit-text-fill-color: inherit !important; /* Mantiene el color del texto */
}

.cursor-pointer{
    cursor: pointer;
}