@import url('https://fonts.googleapis.com/css2?family=Acme&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2a2185;
    --white: #fff;
    --gray: #f5f5f5;
    --black1: #222;
    --black2: #999;
}

body {
    background-image: url("../../factopia-images/backgrounds/bg_login.jpeg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #ff3300;
}

.efecto-caja {
    backdrop-filter: blur(10px);
    border: 3px solid #ff3300;
    border-image: linear-gradient(to bottom, red, orangered) 1;
    box-shadow: 0px 0px 25px #893300;
}

.efecto-caja-central {
    backdrop-filter: blur(10px);
    border: 3px solid yellow;
    border-image: linear-gradient(to bottom, orangered, orange) 1;
    box-shadow: 0px 0px 25px #893300;
    transition: all 0.3s;
}

.efecto-caja-footer {
    backdrop-filter: blur(10px);
    border: 3px solid yellow;
    border-image: linear-gradient(to bottom, orange, yellow) 1;
    box-shadow: 0px 0px 25px #893300;
}

.efecto_mensaje {
    height: 50px;
    background: transparent
}

.login-button {
    background: #ff3300;
    color: white;
    border-radius: 20px;
    width: 40%;
    border: 2px solid #ff3300;
    padding: 0.4rem;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.login-button:hover {
    background: transparent;
    border: 2px solid white;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 25px #893300;
}

.select-login {
    border: 2px solid #ff3300;
    background-color: #ff3300;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.select-login:hover {
    background-color: transparent;
    border: 2px solid white;
    box-shadow: 0px 0px 25px #893300;
    border-color: white;
}

.select-login:focus {
    box-shadow: none;
    outline: 0;
    border-color: #ff3300;
}

.input-login {
    flex: 0.98;
}

.input-login:focus {
    box-shadow: none;
    outline: 0;
    border-color: #ff3300;
}

.icono {
    margin-left: -30px;
    color: #ff3300;
}

.criteria-list {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: white;
}

.criteria-list p {
    margin-bottom: 0.5rem;
}

.criteria-list ul {
    list-style: none;
    padding-left: 0;
}

.criteria-list li {
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.criteria-list li.valid {
    color: white;
}

.criteria-list li.valid::before {
    content: '✓';
    position: absolute;
    left: 0;
}

.criteria-list li.invalid::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dd4b39;
}

.logo-img {
    height: 100px;
    overflow: hidden;
}

.logo-img img {
    max-width: 80%;
    max-height: 80%;
    cursor: pointer;
}

.textenlace a {
    text-decoration: none;
    transition: all 0.3s;
}

.textenlace a:hover {
    color: #ff3300 !important;
}

/* modal login */

.modal-factopia {
     border: none; 
     background: #dd4b39; 
     text-align: center; 
     color: white !important;
}

.modal-factopia h1 {
     cursor: default;
}

.modal-button {
    background-color: #dd4b39; 
    border-color: #dd4b39;
    color: white;
    transition: all 0.3s;
}

.modal-button:hover {
    background: #757575;
    border-color: #757575;
    color: rgba(0,0,0,0.55);
    box-shadow: 5px 5px 8px black;
}

.modal-button-reverse {
    background: #757575;
    border-color: #757575;
    color: white;
    transition: all 0.3s;
}

.modal-button-reverse:hover {
    background-color: #dd4b39; 
    border-color: #dd4b39;
    color: rgba(0,0,0,0.55);
    box-shadow: 5px 5px 8px black;
}

.form-group {
    margin-bottom: 1.25rem;
}
