* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #b1e4ec;
  margin: 0;
  padding-top: 0px;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.form-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 1px solid #ccc;
}
.form-errors {
background: #ffe6e6;
padding: 15px;
margin-bottom: 20px;
border: 1px solid #ff4d4d;
border-radius: 5px;
}


h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #5c6bc0;
}

.gender {
  margin-bottom: 20px;
}

.gender label {
  margin-right: 15px;
}

.checkbox {
  margin-bottom: 20px;
}

.checkbox input {
  margin-right: 8px;
}

.btn-submit {
  background-color:rgb(10, 136, 221);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color:rgb(53, 13, 233);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 40px;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}
