:root {
    --color-texto: #efefef;
    --color-btn-menu: #FF5722;
    --color-btn-form: #FF5722;
    --color-borderb-input: #212121;

    --color-linear-1: #0F3040;
    --color-linear-2: #E77B49;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, var(--color-linear-1) 10%, var(--color-linear-2) 90%);
    background-repeat: no-repeat;
    height: 100vh;
}

.header-menu {
    width: 100%;
    height: auto;
}

.menu-inicio {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.logo-menu {
    width: 150px;
    height: 70px;
    display: flex;
    justify-content: center;
    padding: 5px 5px;
}

.logo-menu img {
    width: 125px;
    height: auto;
}

.menu {
    width: 150px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    width: 110px;
    height: 35px;
    background-color: var(--color-btn-menu);
    font-size: 1em;
    font-weight: bolder;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--color-texto);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    opacity: 0.8;

}

.menu a:hover {
    cursor: pointer;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.contenedor-form-login {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.contenedor-form-login .form-login {
    width: 350px;
    height: 400px;
    padding: 15px 15px;
    border-radius: 5px;
    border: none;
    margin: 25px;
}

.contenedor-form-login .form-login h2 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--color-texto);
    margin: 25px;
}

.contenedor-form-login .form-login input {
    width: 100%;
    height: 35px;
    padding: 5px 10px;
    margin-bottom: 12px;
    border: none;
    border-bottom: 1px solid var(--color-borderb-input);
    background: none;
    color: var(--color-texto);
}

.contenedor-form-login .form-login input::placeholder {
    color: var(--color-texto);
    font-size: 1.2em;
    font-weight: 400;
}

.contenedor-form-login .form-login input[type="submit"] {
    background-color: var(--color-btn-form);
    color: var(--color-texto);
    margin-top: 15px;
    border-radius: 5px;
    border-bottom: none;
    padding: 5px 10px;
    font-size: 1em;
    opacity: 0.8;
}

.contenedor-form-login .form-login input[type="submit"]:hover {
    cursor: pointer;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.footer-form {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 5px 10px;
}

.footer-form p {
    font-size: 1em;
    font-weight: 400;
    color: var(--color-texto);
}