/* --- NEW HEADER STYLES --- */
.bseb-header {
    width: 100%;
    background-color: #3b5998; /* स्क्रीनशॉट से मिलता-जुलता नीला रंग */
    color: white;
    padding: 15px 0;
    margin-bottom: 20px; /* लॉगिन फॉर्म से थोड़ी दूरी */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 60px; /* इमेज की साइज़ */
    width: auto;
    margin-right: 20px;
}

.header-content h1 {
    font-size: 30px;
    font-weight: normal;
    margin: 0;
}
/* -------------------------- */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column; /* एलिमेंट्स को ऊपर से नीचे व्यवस्थित करने के लिए */
    justify-content: flex-start; /* हेडर को शीर्ष पर रखने के लिए */
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 20px; /* ऊपर से थोड़ी दूरी बनाए रखने के लिए */
}

/* ... बाकी सभी CSS कोड वही रहेंगे जो पहले दिए गए थे ... */

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

input[type="text"],
input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 16px;
}

.date-input-container {
    position: relative;
}

.btn-primary {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    width: 100%;
    background-color: #17a2b8;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #138496;
}