                    /* General Page Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f1; /* Light tea green tint */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling - GuruShri Brand Style */
.main-header {
    background-color: #7752ff; /* Deep tea leaf green */
    color: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 3px solid #d4af37; /* Gold accent line */
}


/* Layout Wrapper for centering the form below header */
.content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Login Box */
.login-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.login-container h2 {
    color: #2d5a27;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Inputs & Buttons */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccd5c9;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #3e8e41;
}

.error {
    color: #d9534f;
    background: #fbeaea;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
}    
/* NEW ADDITION */
/* Align Logo Image and Text on the same line */
.logo-area {
    display: flex;
    align-items: center; /* Vertical center */
    gap: 15px; /* Space between img and text */
}

.logo-area img {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
}

/* Beautiful 'Visit Front End' Link */
.visit-site-link {
    margin-top: 20px;
    text-align: center;
}

.visit-site-link a {
    color: #2d5a27;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #2d5a27;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.visit-site-link a:hover {
    background-color: #2d5a27;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}