body {
    background: url('../media/filmclip1.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.login-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.login-container h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: #007bff;
    box-shadow: none;
}

.alert {
    background-color: rgba(255, 0, 0, 0.8);
    border: none;
    color: white;
}

input::placeholder {
    color: white !important;
    opacity: 0.25;
}

.form-label-custom{
    color: white;
    font-weight: bold;
}

/* Password Eye*/
.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 35px;
    bottom: 0;
    right: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* DISABLED DEFAULT BROWSER / OS PASSWORD EYE */
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
}


/* Password Eye*/