body{
    background: #fff;
}
header.register-header {
    height: 76px;
    background: linear-gradient(90deg, #D4261A 0%, #259EF4 100%);
    align-content: center;
    padding: 10px 50px;
}
img.register-logo {
    width: 45px;
    height: 45px;
}
section.registration {
    padding: 50px 30px;
}
section.registration h2 {
    font-size: 36px;
    color: #08263B;
    font-weight: bold;
    line-height: 109%;
    margin-left: 32px;
    font-family: "Fahkwang", sans-serif;
}
section.registration h4 {
    font-size: 20px;
    line-height: 45px;
    font-weight: bold;
    color: #012D3B;
    margin-left: 32px;
    font-family: "Inter", sans-serif;
}
section.registration h5 {
    font-size: 13px;
    line-height: 25px;
    font-weight: 700;
    color: #259EF4;
    margin-top: 30px;
    margin-left: 32px;
    font-family: "Inter", sans-serif;
    position: relative;
    top: 30px;
}
img.logo {
    width: 5%;
}
.zl-logo{
    margin-left: 150px;
}
h5.others {
    position: relative;
    top: 10px !important;
}
section.registration h6 {
    font-size: 13px;
    line-height: 25px;
    font-weight: 700;
    color: #259EF4;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
}
span.reg {
    color: #259EF4;
}
.form-bg {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 23px 23px 0 0;
}
.form-bg2 {
    background: #EEEEEE;
    padding: 30px;
    border-radius: 0 0 23px 23px;
}
input.form-control {
    width: 100%;
    height: 31px;
    border: 0.5px solid #D9DFE1;
    border-radius: 7px;
    padding: 20px;
    color: #434545;
    font-family: "Inter", sans-serif;
}
select.form-control {
    width: 100%;
    padding: 12px 10px;
    border: 0.5px solid #D9DFE1;
    border-radius: 7px;
    color: #434545;
    font-family: "Inter", sans-serif;
}
input[type="date"] {
    color: #434545;
}
::placeholder{
    color: #CFCBCB;
    font-size: 13px;
    line-height: 25px;
    font-family: "Inter", sans-serif;
}
label{
    color: #434545;
    font-size: 13px;
    line-height: 25px;
    font-weight: 600;
    display: block;
    height: 25px;
    font-family: "Inter", sans-serif;
}
.form-group {
    margin-bottom: 30px;
}
.form-group-two {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 30px;
}
.middle input.form-control{
    width: 46%;
}
.left,.right{
    width: 50%;
}
button.form-control {
    width: 100%;
    margin-top: 35px;
    background: #D4261A;
    border: none;
    border-radius: 29.5px;
    height: 50px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0px 28px 18.8px -20px #540C07;
    font-family: "Syne", sans-serif;
    cursor: pointer!important;
}

.input-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 2px;
}

.radio-group {
    display: flex;
    margin-top: 10px;
}

.radio-group label {
  margin-right: 12px;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 4px;
  accent-color: #e74c3c;
}

textarea {
    width: 100%;
    height: 80px;
    border: 0.5px solid #D9DFE1;
    border-radius: 7px;
    padding: 20px;
    color: #434545;
    font-family: "Inter", sans-serif;
}

.toggle {
  display: flex;
  border-radius: 7px;
  overflow: hidden;
  width: 172px;
  margin-top: 10px;
}

.toggle input {
  display: none;
}

.toggle label {
    padding: 0 16px;
    cursor: pointer;
    background-color: #e0e0e0;
    transition: all 0.2s;
    width: 172px;
    height: 31px;
    align-content: center;
    text-align: center;
}

.toggle input:checked + label {
  background-color: #D4261A;
  color: white;
}

.toggle input#vegeYes:checked + label {
  background-color: #ccc;
  color: #555;
}

.tab {
  padding: 12px 20px;
  cursor: pointer;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  background-color: #FFFAFA;
  text-align: center;
  width: 263px;
  height: 44px;
  font-size: 15px;
  line-height: 133%;
  font-weight: bold;
  color: #08263B;
  border:1px solid #E8DBDB;
  border-bottom: 0;
  font-family: "Fahkwang", sans-serif;
}

.tabs {
    display: flex;
    position: relative;
    right: 20px;
    justify-content: right;
}

.tab.active {
  background-color: #D4261A;
  color: #fff;
  text-align: center;
}

p.part {
    font-size: 15px;
    color: #08263B;
    font-weight: bold;
    position: relative;
    bottom: 15px;
    left: 10px;
    font-family: "Fahkwang", sans-serif;
    display: none;
}

@media only screen and (max-width: 1024px){
    .tab{
        width: auto;
    }
}

@media only screen and (max-width: 767px){
  header.register-header {
    padding: 10px 20px;
}
img.logo {
    width: 18%;
    margin:auto;
}
.zl-logo{
    margin-left: 0;
}
section.registration {
    padding: 50px 20px;
}
section.registration h2,section.registration h5{
    margin-left: 0;
}
section.registration h4{
    margin-left: 0;
    text-align: center;
}
.form-group-two {
    gap: 10px;
}
.form-bg,.form-bg2 {
    padding: 30px 20px;
}
.form-group-two.radio {
    display: block;
}
.form-group-two.radio .left,.form-group-two.radio .right{
    width: 100%;
}
.tabs {
    display: flex;
    position: relative;
    right: 0;
    justify-content: center;
}
.tab {
    width: 104px;
}
section.registration h5{
    position: relative;
    top: 0;
    margin-bottom: 20px;
    margin-left: 10px;
}
p.part{
    display: block;
}
span.parts {
    display: none;
}
}