﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}


.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.watermark img {
    position: absolute;
    opacity: 0.1;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.login-box {
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    width: 300px;
    border: 3px solid #004d00; /* Green border */
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #004d00; /* Green color */
}

.textbox {
    margin-bottom: 20px;
}

.input-textbox {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffd700; /* Yellow border */
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.btn {
    background-color: #004d00; /* Green background */
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .btn:hover {
        background-color: #ffd700; /* Yellow on hover */
        color: #004d00; /* Green text on hover */
    }

/* Body Styling */
body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

/* Main Container */
.selfhelp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
}

h1 {
    color: #004d00; /* Green */
    font-size: 32px;
}

/* Profile Section */
.profile p {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Queries Section */
.queries ul {
    list-style-type: disc;
    padding-left: 20px;
}

.queries li {
    margin-bottom: 20px;
    font-size: 18px;
}

.queries a {
    color: #004d00; /* Green */
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

    .modal-content h2 {
        font-size: 26px;
        color: #004d00; /* Green */
        margin-bottom: 20px;
    }

    .modal-content label {
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: red;
}

/* Button Styling */
.btn {
    background-color: #004d00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #003300;
    }

/* Footer Styling */
footer {
    margin-top: 50px;
    text-align: center;
    background-color: #004d00; /* Green */
    padding: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        display: inline;
        margin-right: 20px;
    }

    .footer-links a {
        color: #ffd700; /* Yellow */
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
    }

        .footer-links a:hover {
            color: white;
        }
