@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff&family=Funnel+Display:wght@300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --color_fondo_claro: #21262b; /*#21262b*/
}

body {
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: var(--color_fondo_claro);
}
.navbar{
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    border-radius: 60px;
    height: 60px;
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    box-shadow: 0 5px 10px rgba(31, 31, 31, 0.486);
    z-index: 1000;
}
.logo{
    height: 30px;
}
.logo_nombre{
    height: 20px;
    margin-left: 5px;
}
@media screen and (max-width: 500px){
    .logo_nombre{
        display: none;
    }
}
#NavButtoms{
    position: relative;
    right: 0px;
}
.ModoSignLog{
    padding: 10px;
    font-size: 10pt;
    margin: 0;
    background-color: rgba(37, 37, 37, 0);
    border-color: #2c3238;
    border-width: 2px;
    color: #2c3238;
    border-radius:20px;
    transition: 0.5s ease;
}
.ModoSignLog:hover{
    box-shadow: -3px 2px 0 black;
    background-color: rgba(37, 37, 37, 0.562);
    color: white;
}

.container{
    background-color: #202020;
    color: white;
    width: 50%;
    padding: 0;
    border-radius: 20px;
    box-shadow: -10px 10px 50px rgba(34, 34, 34, 0.1),20px -10px 50px rgba(10, 10, 10, 0.1);
}
#loginForm .form-floating .form-control{
    border-radius: 0;
    background-color: #24242400;
    color: #575757;
    border: 0;
    border-bottom: #575757 solid 1px;
}
#loginForm .form-floating .form-control:focus{
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0);
    border-color: white;
}

#registerForm .form-floating .form-control{
    border-radius: 0;
    background-color: #24242400;
    color: #575757;
    border: 0;
    border-bottom: #575757 solid 1px;
}
#registerForm .form-floating .form-control:focus{
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0);
    border-color: white;
}
.portadaLogin{
    position: absolute;
    right: 10px; bottom: 0;
    background-size: cover;
    background-position: center;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
    background-image:linear-gradient(to right,#202020, rgba(0, 0, 0, 0)),url('img/portadaLogin.webp');
    background-size: cover;
    border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 1200px) {
    .container{
        width: 90%;
    }
    .portadaLogin{
        display: none;
    }
}
.btnLogSign{
    width: 100%;
    height: 40px;
    border-radius: 50px;
    border:0;
    padding: 10px;
    font-size: 10pt;
    color: rgb(255, 255, 255);
    background: linear-gradient(to left,#2f253d,#47358a9f,#513d70);
    transition: 0.5s ease;
}
.btnLogSign:hover{
    box-shadow: 1px 5px 0 rgba(0, 0, 0, 0.39);
}
.enlace{
    color: #687a8b;
}
.g-signin2 {
    width: 100%;
    margin-top: 10px;
}
.g-signin2 > div {
    margin: 0 auto;
    background-color: #20202000;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.g-signin2 > div:hover{
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    color: white;
}
.message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
}
.success {
    background-color: #d4edda;
    color: #155724;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
}
.inputData, .inputData:disabled{
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgb(177, 177, 177);
    color: white;
    background-color: #1a1a1a00;
}
.inputData:focus{
    color: white;
    background-color: #1a1a1a00;
    border-color: white;
    box-shadow: 0 2px 10px rgba(83, 83, 83, 0);
}
.btnYES{
    background-color: #358163;
    border-radius: 25px;
    color: white;
    padding: 10px;
    transition: all 0.5s ease;
}
.btnYES:hover, .btnYES:focus{
    background-color: #56a786;
    color: white;
}

.btnNOT{
    background-color: #e74444;
    border-radius: 25px;
    color: white;
    padding: 10px;
    transition: all 0.5s ease;
}
.btnNOT:hover, .btnNOT:focus{
    background-color: #f35858;
    color: white;
}