/* Background and layout */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f76b1c, #3bb3c3); /* Same gradient as your header */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Login panel styling */
.panel-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

/* Logo styling */
.panel-container .logo {
  height: 60px;
  margin-bottom: 20px;
}

/* Heading */
.panel-container h2 {
  margin-bottom: 30px;
  color: #3bb3c3;
}

/* Input fields */
.panel-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.panel-container input:focus {
  border-color: #3bb3c3;
  outline: none;
}

/* Login button */
.panel-container button {
  width: 100%;
  padding: 12px;
  background-color: #f76b1c;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
  font-size: 16px;
}

.panel-container button:hover {
  background-color: #e8651a;
}
