body{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.login-form {
    margin: 7px auto;
    padding:25px;
    margin-top: 7px;
    max-width:300px;
    text-align:center;
    width: 100%;
    background-image: linear-gradient(to bottom left, #74a1ff, #07396e);
    border-radius: 5px;
}
/*
.login-form {
    margin: 7px auto;
    padding: 25px;
    margin-top: 7px;
    max-width: 300px;
    text-align: center;
    width: 100%;
    background-image: url('../img/ss.png'), linear-gradient(to bottom left, #74a1ff, #07396e);
    background-repeat: repeat;
    background-size: 90px 90px; /* Puedes ajustar el tamaño de la imagen según necesites */
    border-radius: 5px;
    position: relative; /* Asegura que los elementos hijos estén posicionados correctamente */
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom left, #74a1ff, #07396e);
    opacity: 0.7; /* Ajusta la opacidad según tus necesidades */
    z-index: 1;
    border-radius: 5px;
}

.login-form * {
    position: relative;
    z-index: 2;
}*/


.login-form h2 {
    margin-bottom: 20px;
}
.login-form label {
    display: block;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    border: none;
}
.login-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 7px;
    background-color: #74a1ff;
    border: none;
    border-radius: 2px;
    color: white;
    font-size: 16px;
}
.login-form button:hover {
    background-color: #74a1ff;
}

.titles {
    color: white;
    text-align: left;
}