﻿
/* Reset basic margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #5e8bcb; /* Blue background fallback */
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.btn-login {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
/* HEADER STYLES */
.header-wrapper {
    background-color: #ffffff;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

    .header-text .line-1 {
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .header-text .line-1 .orange {
            color: #f29320;
        }

        .header-text .line-1 .green {
            color: #2eab5d;
        }

    .header-text .line-2 {
        font-size: 20px;
        font-weight: 500;
        color: #2eab5d;
        margin-top: 2px;
    }

/* MAIN BODY STYLES */
.main-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 15px;
    /* Simulating the blue background with map silhouette */
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.2) 100%), url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/India_location_map.svg/1200px-India_location_map.svg.png') no-repeat center bottom;
    background-size: cover;
    background-color: #5e8bcb;
    background-blend-mode: overlay;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 320px 350px;
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

/* Card Base Styles */
.card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    color: #fff;
    padding: 12px 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LEFT COLUMN - Login Form */
.login-card .card-header {
    background-color: #8bc34a;
}

.login-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
}

.captcha-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 5px 0;
}

.captcha-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-refresh {
    background: #fff;
    border: 1px solid #666;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 13px;
    border-radius: 2px;
}

.btn-login {
    background-color: #b0d572;
    color: #fff;
    border: none;
    width: 100px;
    padding: 8px;
    border-radius: 2px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin-left: auto;
}

.forgot-pass {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
}

/* RIGHT COLUMN - Info Cards */
.highlight-card .card-header {
    background-color: #e53935;
}

.highlight-body {
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.notice-card .card-header {
    background-color: #26a69a;
    margin-top: 20px;
}

.notice-body {
    padding: 20px;
    height: 100px;
}

/* FOOTER STYLES */
.footer {
    background-color: #4d76b3;
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.footer-logo {
    height: 30px;
    margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 750px) {
    .grid-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .header-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .header-text .line-1 {
        font-size: 18px;
    }

    .header-text .line-2 {
        font-size: 16px;
    }
}


