* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 600;
}

p {
  color: #7f8c8d;
  margin-bottom: 20px;
  font-size: 1em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

div {
  text-align: left;
}

label {
  display: block;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  background: #f9f9f9;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
  border-color: #3498db;
  outline: none;
}

input[type="file"] {
  width: 100%;
  padding: 10px 0;
}

button {
  padding: 12px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}

a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  p {
    font-size: 0.9em;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="password"],
  select,
  button {
    font-size: 0.9em;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.2em;
  }

  p {
    font-size: 0.8em;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="password"],
  select,
  button {
    font-size: 0.8em;
    padding: 6px;
  }
}

.forgot-password {
  margin-top: 15px;
  text-align: center;
}

.forgot-password a {
  color: #e74c3c; /* Red color for emphasis */
  font-size: 0.9em;
}

.forgot-password a:hover {
  color: #c0392b;
}

.dashboard-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.dashboard-links li {
  margin: 10px 0;
}

.dashboard-links a {
  display: block;
  padding: 10px;
  background-color: #3498db;
  color: white;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.dashboard-links a:hover {
  background-color: #2980b9;
}

@media (max-width: 768px) {
  .dashboard-links a {
    padding: 8px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .dashboard-links a {
    padding: 6px;
    font-size: 0.8em;
  }
}

.dashboard-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tab {
  display: inline-block;
  padding: 12px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s;
  width: 45%; /* Adjust to fit side by side with gap */
  text-align: center;
}

.tab:hover {
  background-color: #2980b9;
}

@media (max-width: 768px) {
  .dashboard-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .tab {
    padding: 8px;
    font-size: 0.8em;
  }
}