* {
    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: 100px auto;
}

.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;
}

.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;
    }

}
