@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}
*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0px;
    padding: 0px;
}
.header_auth {
    position: absolute;
    width: 100%;
    display: inline-grid;
    height: 200px;
    margin: auto;
    background: linear-gradient(0deg, #1b1a1a00, #000000c9);
    grid-template-columns: 150px 1fr;
}
.header_auth .logo {
    font-size: 35px;
    margin-top: 20px;
    text-transform: uppercase;
    color: white;
    margin-left: 25px;
}

.header_auth .botones_auth {
    text-align: right;
    margin-right: 40px;
}
.header_auth .botones_auth li {
    display: inline-flex;
    margin-top: 30px;
    margin-left: 15px;
}
.header_auth .botones_auth li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 600;
}

.contenedor {
    width: 100%;
    display: grid;
    grid-template-rows: 350px;
}
.contenedor .bg-imagen {
    background-color: #3498db;
    background-size: cover;
    height: 450px;
    width: 100%;

    background: linear-gradient(90deg, #0000003f, #3498db7a),
        url("https://image.freepik.com/free-photo/man-watching-streaming-service-his-tv_23-2149047409.jpg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.contenedor .formulario {
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 150px;
    max-width: 450px;
    width: 90%;
    border-radius: 3px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.137);
    margin-top: -60px;
    margin-bottom: 50px;
}

.contenedor .formulario .titulo {
    color: var(--color-texto-segundary);
    font-size: 1.5rem;
}
.contenedor .formulario form {
    width: 80%;
    margin: auto;
    padding-bottom: 30px;
    padding-top: 30px;
}
.contenedor .formulario form .input {
    margin-top: 25px;
}
.contenedor .formulario form .input input {
    width: 100%;
    outline: none;
    height: 50px;
    text-indent: 40px;
    border: none;
    border-bottom: solid 1px #3498db;
    font-size: 1rem;
    background-color: transparent;
}
.contenedor .formulario form .input svg {
    position: absolute;
    height: 20px;
    margin-top: 13px;
    color: #3498db;
    margin-left: 10px;
}
.contenedor .formulario form .input input:invalid {
    background-color: rgb(255, 241, 240);
}

.contenedor .formulario form button {
    width: 100%;
    border-radius: 3px;
    height: 50px;
    border: none;
    margin-top: 25px;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    background-color: #3498db;
}
.password-request {
    font-size: 14px;
    text-decoration: none;
}

.invalid-feedback {
    font-size: 15px;
    color: #d63031;
    font-weight: 500;
}
@media (max-width: 700px) {
    .contenedor {
        grid-template-rows: 250px;
    }
}
