* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 30px;
  background-color: #eef3f1;
  color: #24352e;
  font-family: Arial, Helvetica, sans-serif;
}

#login-page {
  width: 100%;
  max-width: 440px;
  margin: 60px auto;
  padding: 35px;
  background-color: white;
  border: 1px solid #d2ded8;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.brand-name {
  margin-top: 12px;
  margin-bottom: 0;
  color: #285c46;
  font-size: 28px;
  font-weight: bold;
}

.brand-description {
  margin-bottom: 28px;
  color: #66756e;
  line-height: 1.5;
  text-align: center;
}

#form-title {
  margin-top: 0;
  margin-bottom: 25px;
  color: #285c46;
  text-align: center;
}

.input-group-box {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #354b41;
  font-size: 15px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 11px;
  background-color: white;
  border: 1px solid #b9c8c1;
  border-radius: 6px;
  font-size: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #327357;
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #245740;
  box-shadow: 0 5px 10px rgba(36, 87, 64, 0.22);
  transform: translateY(-2px);
}

#toggle-form {
  margin-top: 20px;
  margin-bottom: 0;
  color: #66756e;
  text-align: center;
}

#toggle-link {
  color: #327357;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

#dashboard {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto;
}

#dashboard-header {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px 25px;
  background-color: #285c46;
  color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

#dashboard-header .logo-mark {
  background-color: white;
  color: #285c46;
}

#dashboard-header .brand-name {
  margin: 0;
  color: white;
}

#dashboard-header p {
  margin-top: 5px;
  margin-bottom: 0;
  color: #dce9e3;
}

#activity-section,
#saved-panel {
  height: 100%;
  min-height: 370px;
  padding: 30px;
  background-color: white;
  border: 1px solid #d2ded8;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

#activity-section h1,
#saved-panel h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #285c46;
  text-align: center;
}

#activity-result {
  min-height: 130px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #dff1e8;
  color: #285c46;
  border: 1px solid #b9d9ca;
  border-left: 7px solid #327357;
  border-radius: 7px;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

#get-activity,
#save-activity {
  margin-top: 10px;
}

#save-activity {
  background-color: #f2a65a;
  color: #332419;
}

#save-activity:hover {
  background-color: #df8e3c;
}

#empty-saved-message {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff2df;
  color: #6b5132;
  border: 1px solid #efd0a7;
  border-radius: 7px;
  text-align: center;
}

#saved-activities-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

#saved-activities-list li {
  margin-bottom: 10px;
  padding: 13px;
  background-color: #dff1e8;
  color: #285c46;
  border: 1px solid #b9d9ca;
  border-radius: 7px;
}