/* Background image with a logo */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f8f9fa; /* Fallback background color */
}

/* Login form background and layout */
.login-form {
    background-color: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Header styling */
h2 {
    color: #212529;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button styles to match WPF */
/* Button styles to match WPF */
.btn-wpf {
    background-color: #0D6EFD;
    color: white;
    border: none;
    width: 50%;
    height: 60px;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-wpf:hover {
    background-color: rgba(255, 69, 0, 1); /* #FF4500 */
}



/* Label styles consistent with WPF theme */
label {
    color: black;
    font-size: 18px;
    font-weight: bold;
}

/* Input fields */
.form-control {
    background-color: white;
    border: 1px solid #ccc;
    color: black;
    font-size: 18px;
    height: 50px;
    padding: 10px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-form {
        margin-top: 50px;
        width: 100%;
    }
}

/* Error output style */
#error-output {
    padding: 10px;
    color: red;
}
