body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #dcdfe4;
  display: flex;
  justify-content: center;
  margin: 0;
  padding-top: 100px;
  min-height: 100vh;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.company-logo {
  height: 50px;
  width: auto;
}

.login-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  width: 320px;
  height: 300px;
  margin: 20px;
}
.options{
  padding-top: 30px;
  padding-left: 10px;
}
.dashboard-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 500px;
  max-width: 90%;
  text-align: center;
}

.dashboard-title {
  font-size: 24px;
  color: #444;
  margin-bottom: 25px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

input, select {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  display: block;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #e79e4a;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #886228;
}

.form-section {
  margin-bottom: 15px;
  text-align: left;
}

.form-section label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.form-section.inline-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.form-section.inline-checkbox label {
  margin: 0;
  font-weight: 500;
}

#message {
  margin-top: 15px;
  color: rgb(128, 0, 0);
}
