/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #fcfcfc;
    color: #333;
}






.green-btn {
  background-color: #228B22; /* Forest green */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.green-btn:hover {
  background-color: #1a661a; /* Darker forest green */
}


/* Centered Form Container */
form {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Labels and Inputs */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Submit Button */
input[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Messages */
p {
    text-align: center;
    margin-top: 10px;
}

p[style*="color:red"] {
    color: #d9534f;
}

p[style*="color:green"] {
    color: #28a745;
}



        

/* Dark Mode Styles */
.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border: 1px solid #444;
}

.dark-mode button,
.dark-mode input[type="submit"] {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

.dark-mode a {
  color: #90caf9;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3 {
  color: #ffffff;
}