/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #333;
}

/* Gradient Background */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #759655, #a9c389);
    z-index: -2;
}

/* Transparent Background Image */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("dwarikesh.png") no-repeat center center;
    background-size: cover;
    opacity: 0.2; /* Adjust opacity for transparency */
    z-index: -1;
}

/* Container */
.container {
    background: rgba(70, 115, 70, 0.95); /* Greenish background with reduced transparency */
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: left;
    color: #fff; /* White text for better visibility */
}

/* Logo Styling */
.logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 150px;
}

/* Form Styling */
h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* White text for visibility */
}

label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    color: #eee; /* Slightly lighter text color */
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

input:focus, select:focus {
    outline: none;
    border: 1px solid #759655;
}

button {
    width: 100%;
    background-color: #759655;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5b7e44;
}

#message {
    color: red;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}