/* 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;
  
}
.register-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: rgb(130, 106, 251); */
}
.register-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  /* padding: 25px; */
  border-radius: 8px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}
.register-container header {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.register-container .register-form {
  margin-top: 30px;
}
.register-form .register-input-box {
  width: 100%;
  margin-top: 20px;
}
.register-input-box label {
  color: #333;
}
.register-form :where(.register-input-box input, .register-select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.register-form :where(.register-input-box textarea) {
  position: relative;
  height: 100px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 15px;
}
.register-input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.register-input-box textarea:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.register-form .register-column {
  display: flex;
  column-gap: 15px;
}
.register-form .register-gender-box {
  margin-top: 20px;
}
.register-gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.register-form :where(.register-gender-option, .register-gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.register-form .register-gender {
  column-gap: 5px;
}
.register-gender input {
  accent-color: #282508;
}
.register-form :where(.register-gender input, .register-gender label) {
  cursor: pointer;
}
.register-gender label {
  color: #707070;
}
.register-address :where(input, .register-select-box) {
  margin-top: 15px;
}
.register-select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none ;
  color: #707070;
  font-size: 1rem;
  padding: 5px 15px;
}
.register-select-box{
    border: 0 !important;
    padding: 0;
}
.register-form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #282508;
}
.register-form button:hover {
  background: #1d1b05;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .register-form .register-column {
    flex-wrap: wrap;
  }
  .register-form :where(.register-gender-option, .register-gender) {
    row-gap: 0px;
  }
}