/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.container header {
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
}
.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #2c3e50;
  font-weight: 500;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #2c3e50;
  margin-top: 8px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 15px;
  transition: all 0.3s;
}
.input-box input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: #667eea;
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #2c3e50;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #2c3e50;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
.form button:active {
  transform: translateY(0);
}
.form button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}

.upload-file {
  margin-top: 20px;
  padding: 20px;
  border: 2px dashed #667eea;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  border-radius: 12px;
  justify-items: center;
  min-height: 100px;
  overflow: visible;
  background: rgba(102, 126, 234, 0.05);
  transition: all 0.3s;
}

.upload-file:hover {
  border-color: #764ba2;
  background: rgba(102, 126, 234, 0.1);
}

.upload-file label {
  color: #2c3e50;
  font-weight: 500;
}

.file-passport {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
}

.C-O {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 50px;
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 1rem;
  color: #2c3e50;
  transition: all 0.3s;
}

.C-O:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

h2, h3 {
  color: #2c3e50;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  color: #666;
  line-height: 1.6;
}
