/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

/* Login Container */
.login-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

/* Heading */
.login-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

/* Form Controls */
.control {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

/* Button Styling */
input[type="submit"] {
  background-color: hsl(32, 100%, 50%);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: hsl(29, 100%, 35%);
}

/* Signup Link */
.signup-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.signup-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.signup-text a:hover {
  text-decoration: underline;
}
