/* css style for header */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 70px;
  background-color: #1e1e2f; /* Dark background for contrast */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00bcd4; /* Accent color on hover */
}

/*css style for footer */
footer {
  width: 100%;
  background-color: #1e1e2f;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  margin-top: 50px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-copy {
  opacity: 0.7;
}

/* css style for login-box */
body {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.login-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.login-box form {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 600px;

}

.login-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #1e1e2f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-box button:hover {
  background-color: #00bcd4;
}
/* registration css */
.registration-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.form-section {
  flex: 1 1 400px;
  background: #fff;
  padding: 90px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-section h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.form-group input {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 600px;
}

.country-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.country-options label {
  font-weight: normal;
}
.required-label::after {
  content: " *";
  color: red;
}