@import url("https://fonts.googleapis.com/css2?family=Delius+Unicase:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
main {
  display: flex;
  padding: 55px 135px;
  justify-content: center;
  align-items: flex-start;
  height: 85vh;
  gap: 30px;
  background-color: #F7F7F7;
}
main .account {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px 34px 16px 34px;
  background-color: white;
}
main .account h2 {
  color: #1C1C1C;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
main .account .name {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .account .name label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .name label input {
  padding-left: 10px;
  display: flex;
  width: 231px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .account .name label input:focus {
  border: 1px solid #007BFF;
}
main .account .email {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
main .account .email label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .email label input {
  padding-left: 10px;
  display: flex;
  width: 488px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .account .email label input:focus {
  border: 1px solid #007BFF;
}
main .account .email p {
  color: #969696;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.1px;
}
main .account .gender {
  display: flex;
  align-items: center;
  gap: 21px;
}
main .account .gender .box {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
}
main .account .gender label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .gender label input {
  position: absolute;
  opacity: 0;
  border: 1px solid #545454;
  color: white;
}
main .account .gender label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}
main .account .gender label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
main .account .gender label input:checked ~ .checkmark {
  background-color: #2196F3;
}
main .account .gender label input:checked ~ .checkmark:after {
  display: block;
}
main .account .gender label .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
main .account .country-city {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .account .country-city .country {
  display: flex;
  align-items: center;
}
main .account .country-city .country label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .country-city .country label .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
main .account .country-city .country label .select-wrapper select {
  appearance: none;
  padding-left: 10px;
  display: flex;
  width: 245px;
  height: 38px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .account .country-city .country label .select-wrapper select:focus {
  border: 1px solid #007BFF;
}
main .account .country-city .country label .select-wrapper img {
  position: absolute;
  right: 5px;
}
main .account .country-city .city {
  display: flex;
  align-items: center;
}
main .account .country-city .city label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .country-city .city label input {
  padding-left: 10px;
  display: flex;
  width: 231px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .account .country-city .city label input:focus {
  border: 1px solid #007BFF;
}
main .account .button-and-text {
  width: 502px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #E4E4E4;
}
main .account .button-and-text button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  padding: 8px 10px;
  color: #FFF;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  background-color: #007BFF;
  border: 1px solid #007BFF;
  border-radius: 5px;
}
main .account .button-and-text p {
  max-width: 390px;
  width: 100%;
  color: #969696;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.1px;
  margin-bottom: 20px;
}
main .account .button-and-text p .agreement {
  color: #007BFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.1px;
  text-decoration: unset;
}
main .account .login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
main .account .login p {
  color: #545454;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .account .login a {
  color: #007BFF;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  text-decoration: unset;
}
main .profile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px 35px 116px 35px;
  background-color: white;
}
main .profile h2 {
  color: #1C1C1C;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.4px;
}
main .profile .photo-cam-bin {
  display: flex;
  align-items: center;
}
main .profile .photo-cam-bin .cam-bin-text {
  margin-left: 20px;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .camera-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .camera-wrapper input {
  display: flex;
  width: 132px;
  height: 26px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
  caret-color: transparent;
  cursor: pointer;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .camera-wrapper img {
  position: absolute;
  right: 8px;
  cursor: pointer;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .bin-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .bin-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border: 1px solid #545454;
  border-radius: 5px;
  cursor: pointer;
}
main .profile .photo-cam-bin .cam-bin-text .cam-bin .bin-wrapper img {
  position: absolute;
  right: 7px;
  cursor: pointer;
}
main .profile .photo-cam-bin .cam-bin-text p {
  color: #969696;
  font-family: "Roboto";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.1px;
}
main .profile .name-email {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .profile .name-email label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .profile .name-email label input {
  padding-left: 10px;
  display: flex;
  width: 231px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .profile .name-email label input:focus {
  border: 1px solid #007BFF;
}
main .profile .country-city {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .profile .country-city .country {
  display: flex;
  align-items: center;
}
main .profile .country-city .country label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .profile .country-city .country label .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
main .profile .country-city .country label .select-wrapper select {
  appearance: none;
  padding-left: 10px;
  display: flex;
  width: 245px;
  height: 38px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .profile .country-city .country label .select-wrapper select:focus {
  border: 1px solid #007BFF;
}
main .profile .country-city .country label .select-wrapper img {
  position: absolute;
  right: 5px;
}
main .profile .country-city .city {
  display: flex;
  align-items: center;
}
main .profile .country-city .city label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .profile .country-city .city label input {
  padding-left: 10px;
  display: flex;
  width: 231px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .profile .country-city .city label input:focus {
  border: 1px solid #007BFF;
}
main .profile .zip-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .profile .zip-phone label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #545454;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}
main .profile .zip-phone label input {
  padding-left: 10px;
  display: flex;
  width: 231px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 5px;
}
main .profile .zip-phone label input:focus {
  border: 1px solid #007BFF;
}
main .profile .zip-phone label input::-webkit-outer-spin-button, main .profile .zip-phone label input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
main .profile button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 38px;
  padding: 8px 10px;
  color: #FFF;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  background-color: #007BFF;
  border: 1px solid #007BFF;
  border-radius: 5px;
}

/*# sourceMappingURL=style.css.map */
