@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family:  "Libre Baskerville", -apple-system, serif;
    background-image: url("assets/bogra333_background_image_of_india_punjab_and_books_and_literat.webp");
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}
.logo-container {
    text-align: center;
    margin-bottom: 20px; /* Adds space between the logo and the title */
}

.logo-container img {
    max-width: 150px; /* Adjust this value to make your logo bigger or smaller */
    height: auto;     /* Keeps the logo's aspect ratio */
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}
p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}
button {
    width: 100%;
    padding: 15px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #5848c5;
}
button:disabled {
    background-color: #c7c1f0;
    cursor: not-allowed;
}
.status-message {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}
.status-message.error {
    color: #d9534f;
}

.site-footer {
    margin-top: 40px;      /* Adds space above the footer */
    padding-top: 20px;      /* Adds more space above the text */
    border-top: 1px solid #eee; /* A subtle separator line */
    text-align: center;
    font-size: 14px;
    color: #888;
}

.site-footer a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
    color: #5848c5; /* Matches your button hover color */
    text-decoration: underline;
}

/* --- NEW: WIDER CONTAINER FOR POLICY PAGES --- */
.container.container-wide {
    width: 90%;      /* Use most of the screen width */
    max-width: 1200px;
}

@media (max-width: 768px) {
    .container.container-wide {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    h1 {
        font-size: 24px; /* Make the main title smaller */
    }

    body, p, label, input, button {
        font-size: 14px; /* Decrease the base font size for all other text */
    }

    button {
        padding: 12px; /* Adjust button padding to match smaller font */
    }
}

