body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #121212; /* Dark background for body */
    color: #e0e0e0; /* Light text color for body */
}

.container {
    flex-grow: 1; /* Pushes the footer to the bottom */
    margin-top: 50px;
}

#loginTitle {
    font-size: 2rem; /* Adjust the size as needed */
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #1f1f1f;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

#webForm {
    padding: 20px;
    background: #1f1f1f;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

label {
    color: #b3b3b3;
}

input.form-control, textarea.form-control {
    background-color: #2c2c2c; /* Dark background for input fields */
    color: #ffffff; /* Text color inside the input fields */
    border: 1px solid #444444; /* Border color of the input fields */
}

input.form-control::placeholder, textarea.form-control::placeholder {
    color: #777777; /* Placeholder text color */
}

input.form-control:focus, textarea.form-control:focus {
    background-color: #2c2c2c; /* Dark background for input fields when focused */
    color: #ffffff; /* Text color inside the input fields when focused */
    border: 1px solid #ffc107; /* Yellow border when focused */
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); /* Optional: yellow glow when focused */
}

textarea.large-input {
    height: 20rem; /* Increase height */
    width: 100%; /* Make it full width */
}

.btn-primary {
    background-color: #ffc107; /* Yellow button */
    border-color: #ffc107;
    color: #121212; /* Dark text color on button */
}

.btn-primary:hover {
    background-color: #ffeb3b; /* Lighter yellow when hovered */
    border-color: #ffeb3b;
    color: #121212; /* Dark text color on button */
}

.button-yellow {
    background-color: #ffc107; /* Gelber Button */
    border-color: #ffc107;
    color: #121212; /* Dunkle Schriftfarbe auf dem Button */
}

.button-yellow:hover {
    background-color: #ffeb3b; /* Helleres Gelb beim Hover */
    border-color: #ffeb3b;
    color: #121212; /* Dunkle Schriftfarbe auf dem Button */
}

a {
    color: #fdc51c; /* Sets link color to yellow */
    text-decoration: none; /* Removes underline from links */
}

a:hover {
    text-decoration: underline; /* Underline links on hover */
}

/* Footer styling */
footer {
    background-color: #121212 !important; /* Dark gray */
    color: #ffffff; /* White text */
    padding: 20px 0;
    width: 100%;
}

footer .container {
    max-width: 900px;
    margin: auto;
}

footer a {
    color: #fdc51c; /* Ensures footer links are yellow */
}

footer a:hover {
    text-decoration: underline;
}

footer .bg-dark {
    background-color: #121212 !important; /* Ensure darker gray */
}
