@font-face {
    font-family: 'GothamThin';
    src: url('../fonts/GothamThin.eot');
    src: url('../fonts/GothamThin.eot') format('embedded-opentype'),
         url('../fonts/GothamThin.woff2') format('woff2'),
         url('../fonts/GothamThin.woff') format('woff'),
         url('../fonts/GothamThin.ttf') format('truetype'),
         url('../fonts/GothamThin.svg#GothamThin') format('svg');
}
@font-face {
    font-family: 'GothamLight';
    src: url('../fonts/GothamLight.eot');
    src: url('../fonts/GothamLight.eot') format('embedded-opentype'),
         url('../fonts/GothamLight.woff2') format('woff2'),
         url('../fonts/GothamLight.woff') format('woff'),
         url('../fonts/GothamLight.ttf') format('truetype'),
         url('../fonts/GothamLight.svg#GothamLight') format('svg');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background:#231f20;
  padding: 80px;
  font-family: "GothamLight";

}

.container {
  position: relative;
  max-width: 714px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.container .title {
  font-size: 22px;
  font-weight: 500;
  position: relative;
}

.container .title::before {
  content: "";
  position: absolute;
  height: 3.5px;
  width: 58px;
   background: linear-gradient(135deg, #217058, #10f676);
  bottom: -5px;
}

.container .form {
  margin-top: 10px;
}
.form .input-box {
  width: 100%;
  margin-top: 6px;
}
.input-box label {
  color: #333;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 36px;
  width: 100%;
  outline: none;
  font-size:14px;
  color: #707070;
  margin-top: 1px;
  border: 1px solid #ddd;
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 0 15px;
  margin-bottom: 8px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

label {
  font-size: 14px;
}

.form :where(.input-box textarea) { 
    height: 80px;
	width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding-left: 15px;
    font-size: 14px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.form .column {
  display: flex;
  column-gap: 20px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 15px;
    position: relative;
}
.logout {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
}

.submit {
  background:#217058;
  color: #fff;
  border: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "GothamLight";

}
.submit:hover {
   background: linear-gradient(135deg, #10f676, #217058);
}

/* inside the form gender details */
form .gender__details .gender__title {
  font-size: 18px;
  font-weight: 500;
}

form .gender__details .category {
  display: flex;
  width: 24%;
  margin: 10px 0;
  justify-content: space-between;
}

.gender__details .category label {
  display: flex;
  align-items: center;
}

.gender__details .category .dot {
  height: 18px;
  width: 18px;
  background:#d9d9d9;
  border-radius: 50%;
  margin: 6px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}

#dot-1:checked ~ .category .one,
#dot-2:checked ~ .category .two,
#dot-3:checked ~ .category .three {
  border-color:#d9d9d9;
  background:#9b59b6;
}

form input[type="radio"] {
  display: none;
}


.address :where(input, .select-box) {
  margin-bottom: 10px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
/* submit button */
form .button {
  height: 45px;
  margin: 10px 0;
}

form .button input {
  height: 86%;
  width: 15%;
  outline: none;
  color: #fff;
  border: none;
  font-size: 16px;
  letter-spacing:0.5px;
  border-radius: 0px;
  background:#217058;
  transition: all 0.3s ease;
  font-family: "GothamLight";
}

form .button input:hover {
   background: linear-gradient(135deg, #10f676, #217058);
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 12px;
    width: 2% !important;
    height: 15px;
}

.checkbox-group label {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 0.9em;
    color: var(--text-color);
}




@media screen and (max-width: 768px) {
body {
  padding: 20px!important;
}
.checkbox-group input[type="checkbox"] {
	width: 4% !important;}
}

/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {flex-wrap: wrap;}
  .form :where(.gender-option, .gender) {row-gap: 15px;}
  form .button input {
    width: 30%!important;
  }	
}

.app__upload-label {
    padding: 6px 15px;
    display: inline-block;
    text-align: center;
}


