body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    overflow: hidden;
}
.login-container {
    position: relative;
    width: 80%;
    height: 80vh;
    display: flex;
    align-items: stretch;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.login-form {
    position: relative;
    z-index: 2;
    width: 40%;
    background: rgba(0,123,255);
    color: #fff;
    padding: 40px;
    text-align: center;
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-control {
    border-radius: 8px;
}
#btnIngresar {
    background: #ffc107 !important;
    padding: 15px;
    width: 70%;
    font-weight: 800;
    display: block;
    margin: 0 auto;
    color: #4a4a4a !important;
    border: none;
    border-radius: 8px;
}
#btnIngresar:hover {
    background: #e0a800 !important;
}
.error-message {
    color: white;
    font-size: 14px;
    display: none;
}
.forgot-password {
    margin-top: 15px;
    font-size: 14px;
}
.forgot-password a {
    color: #ffc107;
    text-decoration: none;
}
@media (max-width: 768px) {
    .video-background {
        display: none;
    }
    .login-container {
        width: 100%;
        height: 100vh;
        box-shadow: none;
    }
    .login-form {
        width: 100%;
        padding: 30px;
    }
}
.toggle-password{position:absolute;right:10px;cursor:pointer;color:#6c757d}.password-container{position:relative;display:flex;align-items:center}.password-container .form-control{padding-right:40px;flex-grow:1}
.invalid-feedback {
    color: white;
    font-size: 14px;
    display: none;
}