* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    background:#212025;
}

.error {
    margin-top:40px;
    margin-bottom:-15px;
    color:#ce1118;
    font-weight: bold;
    text-align:center;
    font-size:18px;
}

.enviado {
    margin-top:40px;
    margin-bottom:-15px;
    color:#073903;
    font-weight: bold;
    text-align:center;
    font-size:18px;
}

.contenedor {
    width:90%;
    max-width:500px;
    margin:50px auto;
}

.contenedor .titulo {
    text-align:center;
    color:#e6e6e6;
    margin-bottom:10px;
}

 .contenedor .texto-cuenta{
    text-align:center;
    margin-bottom:20px;
    color:#fff;
}

.contenedor .texto-cuenta a {
    text-decoration: none;
    color:#1e67c7;
    transition: .3s;
    font-size:18px;
}

.contenedor .texto-cuenta a:hover {
    color:#1b8fc5;
}

.contenedor .formulario {
    background:linear-gradient(to top, #1b8fc5, #df0f8f);
    padding:40px;
    width:100%;
}

.contenedor .formulario input[type="text"],
.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:#8d9190;
    font-size:16px;
}

.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;
    background: rgba(51, 51, 51,.5);
    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;
}