* {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

header {
    width: 100%;
    height: calc(14vh);
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
}

header img {
    width: 450px;
}

.container {
    margin: 50px 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px 0;
    box-sizing: border-box;

}

.login {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 10 4%;
    justify-content: center;
    align-items: center;
}

.ocultar_login {
    display: none;
}

.form-group {
    margin-top: 20px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(32, 54, 99, 0.5);
    max-width: 450px;
    width: 100%;
    height: auto;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 20px;
}

input::placeholder {
    color: #bbb;
}

button {
    background: linear-gradient(to right, #405e9a, #203663);
    color: #fff;
    padding: 10px;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 60px;
}

button:hover {
    background-color: #405e9a;
}

.forgot-password {
    margin-top: 10px;
    text-align: center;
    color: #203663;
}

.forgot-password a {
    color: #203663;
    text-decoration: none;
    font-weight: bold;
}

footer {
    position: fixed;
    background-color: #162447;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    margin-bottom: 0;
    bottom: 0;
}

#confirmacion {
    width: 100%;
    justify-content: center;
    align-items: center;
    border: 1px #ff0000 solid;
    border-radius: 10px;
    color: #ff0000;
    padding: 10px;
    margin: 10px 0;

}



@media screen and (max-width: 1200px) {
    footer {
        margin-top: 150px;
    }
}

@media screen and (max-width: 720px) {

    .login {
        position: absolute;
        top: calc(20vh)
    }


}