* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #121824;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

.main-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* बायां सेक्शन */
.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    position: relative;
}

/* स्ट्रेच किया हुआ नेविगेशन बार */
.top-navbar {
    width: 100%;
    padding: 15px 0;
    border-bottom: 2px solid #e63946;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #e63946;
    background: rgba(230, 57, 70, 0.1);
}

/* बैनर और 'Ekta Transport' (अब बिल्कुल सेंटर और थोड़ा ऊपर) */
.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ऊपर की तरफ सेट करने के लिए */
    align-items: center;         /* बिल्कुल सेंटर में लाने के लिए */
    padding-top: 80px;           /* ऊपर से सही दूरी देने के लिए */
    text-align: center;
}

.transport-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.6), 0 0 40px rgba(230, 57, 70, 0.4);
    margin-bottom: 15px;
}

.tagline {
    font-size: 20px;
    color: #a0aec0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* दाहिना सेक्शन - कर्व्ड और पेज के अंदर दिखने वाला कार्ड */
.right-section {
    width: 440px;
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%); /* नीले पेज के अंदर मेल खाने के लिए */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-card {
    width: 100%;
    background: #ffffff;
    color: #333333;
    padding: 35px 30px;
    border-radius: 20px; /* बढ़िया कर्व देने के लिए */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* अंदर फिक्स दिखने के लिए शैडो */
}

/* लॉगिन टैब - ब्लू हाइलाइट (Owner/Staff) */
.login-tabs {
    display: flex;
    background: #edf2f7;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    color: #4a5568;
}

/* एक्टिव होने पर ब्लू कलर का बैकग्राउंड और वाइट टेक्स्ट */
.tab-btn.active {
    background: #1b263b; 
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(27, 38, 59, 0.3);
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #1b263b;
}

.forgot-pass {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-pass a {
    color: #e63946;
    font-size: 13px;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #e63946;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #d90429;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #718096;
}

.register-link a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
}

/* डायनामिक कंटेंट एनिमेशन */
.dynamic-box {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}