* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

body {
  height: 100vh;
  width: 100%;
} 

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

img {
  height: 100px;
  width: 300px;
}

.content_box {
  width: 450px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 10px;
  background-color: white;
  padding: 15px;
}

.content  h2 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 5px;
}

.content p {
  text-align: center;
  color: gray;
  margin-bottom: 10px;
}

.inputs {
  margin-top: 10px;
  height: 40px;
  display: flex;
  gap: 10px;
}

.inputs input {
  width: 50%;
  border-radius: 6px;
  padding-left: 8px;
  border: 1px solid gray;
  font-size: 16px;
}

.inputs > input:focus {
  outline: none;
  border: 1px solid #0866ff;
}

.inputPass {
  position: relative;
}

.dob > p {
  color: gray;
  margin-top: 10px;
  font-size: 12px;
}

.dateOfBirthBox {
  height: 40px;
  width: 100%;
  display: flex;
  gap: 15px;
}

.dateOfBirthBox > select {
  height: 100%;
  width: 31%;
  font-size: 16px;
  border-radius: 6px;
  padding-left: 3px;
}

.dateOfBirthBox > select:focus {
  outline: none;
  border: 1px solid #0866ff;
}

.genderBox {
  height: 40px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.genderBox > input {
  height: 100%;
  border-radius: 6px;
}

.Other , .Female , .Male {
  border: 1px solid gray;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.emailinput {
  margin-top: 20px;
  height: 80px;
}

.emailinput > input {
  width: 100%;
  height: 50%;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 6px;
  padding-left: 3px;
}

.emailinput > input:focus {
  outline: none;
  border: 1px solid #0866ff;
}

.emailinput  input {
  border: 1px solid gray;
}

.my_content {
  margin-top: 25px;
  font-size: 13px;
  color: gray;
}
.my_content  p {
    margin-bottom: 7px;
}

.register {
  width: 100%;
  height: 50px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.register button {
  background-color: #42b72a;
  width: 50%;
  height: 100%;
  border-radius: 6px;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.register > button:hover {
  background-color: #358825;
}

.register > button > a {
  text-decoration: none;
  color: white;
}

.alreadyAcc {
    text-align: center;
}
.alreadyAcc > a:hover {
    color: #0866ff;
    text-decoration: underline;
}
.alreadyAcc > a {
  text-decoration: none;
  color: gray;

}

@media only screen and (max-width:450px) {
  .regBox {
    width: auto;
  }
}