body {
    font-family: Arial !important;
}
.login-logo{
    text-shadow: 1px 1px 1px #ffffff;
}
.login-box {
    background: rgba(255, 255, 255, 0.699);
    /* Fondo blanco semitransparente */
    padding: 20px;
    /* Espaciado interno */
    border-radius: 10px;
    /* Bordes redondeados */
}

.card-primary.card-outline {
    border-top-color: rgb(255, 255, 255);
    background-color: #ff0126 !important;
    color: white;
}

.btn-primary {
    color: rgb(232, 230, 227);
    background-color: #ff0126;
    border-color: #99091e;
    box-shadow: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(1px);
    /* Desenfoque */

}

.login-overlay {
    position: relative;
    z-index: 1;
    /* Ensure the login form is above the video */
    background-color: rgba(255, 255, 255, 0.8);
    /* Optional: Semi-transparent background */
    padding: 20px;
    border-radius: 5px;
}
