﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
/* Login */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
}

body {
    background: #181a1b;
}

input, select, textarea, button {
    box-sizing: border-box;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 90% !important; /* Se emplea !important para sobreescribir este estilo, pues se obtiene de Bootstrap*/
}

.container-fluid {
    max-width: 500px;
    background-color: #0a0c0d !important;
    border-radius: 15px !important;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff !important;
}

.logo {
    width: 80px;
    margin: auto;
}

    .logo img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 0px 3px #ecf0f3, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

.container-fluid .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.container-fluid .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #fff;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.container-fluid .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 3px #ecf0f3, 0px 0px 0px 5px #a7aaa7, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
}

    .container-fluid .form-field .fas {
        color: #555;
    }


.container-fluid .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    color: #000;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.1px;
}

.container-fluid .btn:hover {
    background-color: #0faaaa;
    color: #ffffff;
}

mark, .mark {
    color: antiquewhite;
    background-color: #0a0c0d;
}

.container-fluid a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #ffffff;
}

#miembro {
    text-decoration: none;
    font-size: 0.8rem;
    color: #ffffff;
}

.container-fluid a:hover {
    color: #0faaaa;
}


#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.form-check-input:checked[type=checkbox] {
    background-color: #000000;
    color: #000000;
    border-color: #0faaaa;
}

/* Cambio de idioma */
.selector-idioma {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Para el Navbar */
.language-flag {
    width: 30px;
    height: auto;
    cursor: pointer;
    transition: transform 0.35s ease;
}

    .language-flag:hover {
        transform: scale(1.0);
    }



/* Registro */


#registrado:hover {
    text-decoration: none;
    font-size: 0.8rem;
    color: #bd0000;
}

#registro:hover {
    background-color: #bd0000;
    color: #ffffff;
}

#remember {
    color: #ffffff;
}


/* SoundCloud */

#soundcloud-toggler {
    cursor: pointer;
    background-color: transparent;
    color: orange;
    font-size: 30px;
    border-color: transparent;
    z-index: -10;
}

