div#div_login {
    height: 100vh;
    background-color: #FFF;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

h4.card-title.text-center {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 200px;
}

label {
    font-size: 14px;
    text-transform: uppercase;
    color: #242424;
    font-weight: bold;
}

.login-form {
    width: 80%;
    margin-left: 10%;
}

input.form-control {
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 20px;
    padding: 10px 20px;
}

label.custom-control-label {
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
}

a.text-dark.font-weight-bold {
    color: #ffab3d !important;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
button.btn.btn-primary.btn-block {
    width: 100%;
    border-radius: 20px;
    background-color: #001a4f;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid #001a4f;
    transition: 0.4s ease all;
}

button.btn.btn-primary.btn-block:hover{
    background-color:  #ffab3d !important;
    border: 1px solid #ffab3d;
}

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

.video-foreground iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Optional: Makes sure video does not interfere with user interactions */
}

.logo-main img {
    width: 500px;
}

.mt-200{
    margin-top: 10%;
}

.msg-danger {
    text-align: center;
    background-color: #ff3f3f;
    margin-top: 15px;
    color: #FFF;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 10px;
}