body {
    background-image: url('/src/background0.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-family: var(--font-regular, Arial, sans-serif);
}

.login-container {
    max-width: 350px;
    margin: 60px auto 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.login-header img {
    width: 150px; /* Making it 30% larger than original */
    height: auto;
    margin-bottom: 1.2rem;
    display: block;
}

/* Ensure logo size is independent of font scaling */
.login-container .login-header img {
    width: 150px;
    height: auto;
    min-width: 150px;
    max-width: 150px;
}

/* Maximum specificity to override any global styles */
html body .login-container .login-header img {
    width: 150px !important;
    height: auto !important;
    min-width: 150px !important;
    max-width: 150px !important;
}





.login-container h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-family: var(--font-bold, Arial, sans-serif);
    text-align: center;
}

#login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.form-label {
    margin-bottom: 0.4rem;
    font-family: var(--font-bold, Arial, sans-serif);
    font-size: 1rem;
}

.form-control {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background: #f5f8fa;
    font-family: var(--font-regular, Arial, sans-serif);
}

#login-form button, .btn {
    margin-top: 0.8rem;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1.1rem;
    border-radius: 6px;
    font-family: var(--font-bold, Arial, sans-serif);
    background: #f4f4f4;
    border: 1px solid #bbb;
    cursor: pointer;
    transition: background 0.2s;
}

#login-form button:hover, .btn:hover {
    background: #e0e0e0;
}

.login-error {
    font-family: var(--font-regular, Arial, sans-serif);
    margin-top: 1rem;
    text-align: center;
} 