body {
    background: linear-gradient(135deg, #ffffff 0%, #d3d3d3 100%);
    min-height: 100vh;
}

.contenido {
    padding-top: 8%;
    padding-inline: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #333;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-weight: 500;
    background-color: black;
    color: white;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    border: none;
    transition: all ease 0.5s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    background-color: rgba(82, 156, 82, 1);
}

.form-control {
    border: none;
    border-bottom: solid 1px black;
    border-radius: 0px;
    transition: all ease 0.5s;
}

.form-control:focus {
    border-bottom: solid 1px rgba(82, 156, 82, 1);
    box-shadow: none;
    border-radius: 0px;
}

.password {
    display: flex;
}

.btn-ver {
    border: none;
}

/* .forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    color: #667eea;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
} */