/* 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: #c7c7c7;
}
.container {
    margin-top: 50px;
  position: relative;
  max-width: 700px;
  width: 100%;
  color: rgb(235, 235, 235);
  background-color: #151111;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 60px 90px 170px -60px rgba(0, 0, 0, 0.733);
}


.btnn{
    padding: 10px;
    background: transparent;
    text-decoration: none;
    color: rgb(209, 208, 208);
    border: 3px solid rgb(209, 208, 208);
    border-radius: 10px;
    font-size: 16px;

}

.container header {
  font-size: 1.5rem;
  color: #e6e6e6;
  font-weight: 500;
  text-align: center;
}
.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}

.form .input-box select{
    width: 100%;
    margin-top: 20px;
  }

  .form :where(.input-box select) {
    position: relative;
    height: 50px;
    background: rgb(37, 37, 37);
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #d6d6d6;
    margin-top: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 15px;
  }

  .form .input-box textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    margin-top: 20px;
  }

  .form .input-box :active {
  border: 2px solid orange;
  }

  .form :where(.input-box  textarea) {
    position: relative;
    height: 50px;
    background: rgb(37, 37, 37);
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #d6d6d6;
    margin-top: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 15px;
  }

label{
    color: rgb(214, 214, 214);
    border-bottom: 2px solid rgb(117, 117, 117);
    width: 100px;
    padding: 8px;
}

span{
  background: linear-gradient(45deg, yellow, rgb(255, 115, 0));
   -webkit-background-clip: text; /* Clip the text to the background */
   color: transparent; 
   text-shadow: 0 2px 70px orange;
}


.input-box label {
  color: #4e4e4e;
  border-bottom: none;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  background: rgb(37, 37, 37);
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid orange;
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: orange;
  font-size: 1rem;
  font-weight: 400;
  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: orange;
}

input :active{
  border: orange;
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #707070;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.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: orange;

}
.form button:hover {
    background: rgb(39, 39, 39);
    color: #c7c7c7;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }

  body, .container{
    background:  #000000;
    box-shadow: none;
  }

 
}