* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    /* background: #212025; */
    background-image: url('../img/fondo_misAcordes.png');
    /* background-color: transparent; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    background-attachment: fixed;
}


.error {
    margin-top:40px;
    margin-bottom:-15px;
    color: #fbfbfbff;
    font-weight: bold;
    text-align:center;
    font-size:18px;
    padding: 5px;
    background: #ec4c4cff;
    border-radius: 10px;
}

.enviado {
    margin-top:40px;
    margin-bottom:-15px;
    color: #073903;
    font-weight: bold;
    text-align:center;
    font-size:18px;
    padding: 5px;
    background: #fbdadaff;
    border-radius: 10px;

}

.contenedor {
    width:90%;
    max-width:500px;
    margin:50px auto;
}

.contenedorLogo {
    width: 100%;
    max-width: 600px;
    margin: 70px auto;
    margin-bottom: 0px;
}

.cajaLogo {
    background-color: rgb(70, 70, 74, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 10px 10px 0 10px;
}

.cajaLogo h2 {
    color: white;
    font-size: 35px;
    text-align: center;
    padding-bottom: 10px;
}

.cancioneroCristiano {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.logoIndex {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    padding: 0px 50px;
    width: 100%;
    border-radius: 25px;
    background-color: rgba(13, 44, 91, 0.7)
}

.aparecer {
    opacity: 1;
}

.infoApp {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    /* Efecto cristal (Glassmorphism) */
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.infoApp h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.infoApp ul {
    list-style: none; /* Quitamos los puntos por defecto */
    padding: 0;
}

.infoApp li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    background:  rgba(0,0,0,0.5);
}

/* Efecto hover sutil */
.infoApp li:hover {
    transform: translateX(10px);
    color: #ffd700; /* Color dorado al pasar el ratón */
}

.icon {
    margin-right: 15px;
    font-size: 1.3rem;
}

.btn-primary {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    background: #ffc107; /* Amarillo musical */
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); /* Sombra inicial para la animación */
    animation: pulsacion 2s infinite; /* Aplicamos la animación */
    transition: all 0.3s ease;
}

/* Efecto al pasar el ratón: se detiene la animación y cambia de color */
.btn-primary:hover {
    animation: none; 
    background: #fff;
    transform: scale(1.05);
}

/* Definición de la animación de "latido" o pulsación */
@keyframes pulsacion {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    margin-top: 10px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #ffc107;
    width: 100%;
    animation: carga 20s linear forwards; /* Sincronizado con tus 10 segundos */
}

@keyframes carga {
    from { width: 100%; }
    to { width: 0%; }
}


/* ........LOGIN........... */

.titulo1, .titulo2 {
    text-align:center;
    color:#e6e6e6;
    margin-bottom:10px;
}

 .contenedor .texto-cuenta{
    font-size: 20px;
    text-align:center;
    margin-bottom:20px;
    color:#fff;
    background-color: rgba(30, 28, 28, 0.6);
}

.contenedor .texto-cuenta a {
    text-decoration: none;
    color: #78a7e3ff;
    transition: .3s;
    font-size:18px;
}

.contenedor .texto-cuenta a:hover {
    color:#1b8fc5;
}

.contenedor .formulario {
    background-color: rgba(30, 28, 28, 0.7);
    border: 1px solid white;
    padding:40px;
    width:100%;
}

.contenedor .formulario input[type="text"],
.contenedor .formulario input[type="email"],
.contenedor .formulario input[type="password"] {
    display:block;
    width:100%;
    margin-bottom:15px;
    padding:10px 20px;
    outline:none;
    border-radius: 5px;
    border:2px solid transparent;
    transition: .4s all ease;
    color: #010119;
    font-size:16px;
    font-weight: 600;
}

.contenedor .formulario label {
    color: white;
}


.contenedor .formulario input[type="text"]::placeholder,
.contenedor .formulario input[type="password"]::placeholder {
    color:#000;
}

.contenedor .formulario input[type="text"]:focus,
.contenedor .formulario input[type="password"]:focus {
    border:2px solid #8d9190;
}

.contenedor .formulario .btn_submit {
    display:block;
    margin:auto;
    margin-bottom:-20px;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* outline: none; */
    background: rgba(10, 10, 10,.9);
    padding:10px 25px;
    color:#fff;
    cursor:pointer;
    transition: .3s all ease;
    font-size:16px;
}

.contenedor .formulario .btn_submit:hover {
    background: rgb(51, 51, 51);
}

.contenedor .principal {
    background:#ccc;
    padding:20px;
    margin-bottom:10px;
}

.contenedor .principal h1 {
    color:#333333;
    text-align:center;
    margin-bottom:10px;
}

.contenedor .principal hr {
    margin-bottom:10px;
    border:none;
    background:#8d9190;
    height:5px;
}

.contenedor .principal p {
    padding:10px;
    line-height:22px;
}

.contenedor .cerrar {
    text-decoration: none;
    color:#e6e6e6;
    font-size:18px;
    float:right;
}

//Position relative esta con Bootstrap escrito en linea
.cajaInputIcon, 
.cajaInpunIcon2 {
    position: relative;
}
.cajaInputIcon span,
.cajaInputIcon2 span {
    position: absolute;
    top: 10px;
    right: 25px;
    cursor: pointer;
}

@media (max-width: 650px) {
    .cajaLogo h2 {
        font-size: 25px;
    }

}

@media (max-width: 420px) {
    .cajaLogo h2 {
        font-size: 20px;
    }

}
