* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(to bottom, #9ec9ff, #eaf3ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #fff;
  width: 380px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.logo h2 {
  color: #2c5db6;
  margin-bottom: 20px;
}

.login-card h3 {
  margin-bottom: 20px;
  color: #333;
}

.login-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.options {
  text-align: left;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

button {
  width: 100%;
  padding: 12px;
  background: #2c5db6;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #244fa1;
}

.forgot {
  display: block;
  margin-top: 15px;
  color: #2c5db6;
  text-decoration: none;
  font-size: 14px;
}

.signup {
  margin-top: 20px;
  font-size: 14px;
}

.signup a {
  color: #2c5db6;
  text-decoration: none;
  font-weight: bold;
}

/* Header.css */
.horizontal-list {
  list-style: none;        /* remove bullets */
  display: flex;           /* make horizontal */
  align-items: center;     /* vertical center */
  gap: 40px;              /* space between items */
  padding: 10px 20px;
  margin: 0;
}

.horizontal-list h2 {
  margin: 0;
  font-size: 20px;
}

.horizontal-list p {
  margin: 0;
  font-size: 13px;
}

.horizontal-list i {
  font-size: 20px;
  cursor: pointer;
  margin-left: 700px;
}

