@font-face {
    font-family: "sofia-pro-regular";
    src: url("/fonts/SofiaProRegularAz.woff") format("truetype");
}
@font-face {
    font-family: "sofia-pro-bold";
    src: url("/fonts/SofiaProBoldAz.woff") format("truetype");
}
body {
    margin: 0;
    font-family: "sofia-pro-regular";
}
.contenedorLogin {
    height: 100vh;
    width: 100vw;
    background-image: url("/general/back_landing-y-login.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.logo {
    height: 10vh;
    position: absolute;
    top: 3%;
    left: 3%;
}
.logo img {
    height: 100%;
}
.contenedorLoginForm h1 {
    font-family: "sofia-pro-bold";
    font-weight: bold;
    text-align: center;
}
.contenedorLoginForm form {
    text-align: center;
}
.contenedorLoginForm form label {
    font-family: "sofia-pro-regular";
    font-size: calc(10px + 0.6vw);
    font-weight: bold;
}
.contenedorLoginForm form .loginInput {
    font-family: "sofia-pro-regular";
    font-size: calc(14px + 1vw);
    font-weight: bold;
    text-align: center;
    margin: 10px 0 25px;
    outline: none;
    border: solid;
    border-color: #DB001E;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}
.boton-1 {
    font-family: "sofia-pro-regular";
    margin: 0;
    font-size: calc(12px + 1vw);
    background: #CC3333;
    color: white;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.boton-1:hover,
.boton-1:active,
.boton-1:focus {
    background: white;
    color: #CC3333;
    box-shadow: inset 0 0 2px #CC3333;
    outline: none;
}
.boton-1:active {
    transform: scale(1.1);
}

.loginFormDebesEstarReg{
    padding-bottom: 35px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
.contenedorLoginForm h1 {
    font-size:larger;
}
.loginFormDebesEstarReg{
    padding-bottom: unset;
    padding-right: 50px;
    padding-left: 50px;
}
}