* {
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
  color: #072447;
  font-size: 18px;
  font-weight: 500;
}
.forms-parent {
  width: 100%;
  background-color: #eee;
}
.forms-parent .container {
  width: 75%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}
.forms-parent .container img {
  width: 200px;
  height: 120px;
}
.forms-parent .container .card-form {
  /* padding: 30px 20px; */
  width: 100%;
  border-radius: 20px;
  margin: 20px 0 20px;
  background-color: white;
}
.forms-parent .container .card-form .header-name {
  padding: 35px;
  background-color: #0b3f7c;
  border-radius: 20px 20px 0 0;
}
.forms-parent .container .card-form .header-name h2 {
  color: white;
  font-size: 35px;
}
.forms-parent .container .card-form .header-name p {
  color: white;
  font-size: 16px;
  margin-top: 4px;
}
.form-inf {
  padding: 35px;
}
.form-inf .form h2 {
  color: #072447;
  font-size: 35px;
}
.form-inf .form .please {
  font-size: 16px;
  margin: 4px 0 30px 0;
}
.form-inf .form .flex-div {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 15px;
}
.form-inf .form .flex-div div {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.form-inf .form .flex-div div label {
  margin-bottom: 4px;
}
.form-inf .form .flex-div div label span {
  color: red;
}
.form-inf .form .flex-div div input,
.form-inf .form .flex-div div select {
  padding: 17px 10px;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 8px;
}
.form-inf .form .flex-div div p {
  color: #989898;
  margin-top: 4px;
  font-size: 16px;
}
input[type="checkbox"]:checked {
  color: #072447;
}
div[style="display: block;"]{
  width: auto !important;
}
div[style="display: block;"] label{
  margin-left: 2px !important;
}
.enable-two {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #eef2f8;
}
.toggle-btn {
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.toggle-circle {
  width: 26px;
  height: 26px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.3s;
}
.on {
  background-color: #072447;
}
.on .toggle-circle {
  left: 25px;
}
.enable-two p {
  text-transform: capitalize;
}
.choose-content {
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #b87b2a;
  color: white;
  margin-bottom: 30px;
}
.choose-content .img-user {
  padding: 30px;
  border-radius: 50%;
  background-color: white;
  width: 0px;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-content .img-user img {
  width: 30px;
  height: 30px;
}
.choose-content h3{
  font-size: 25px;
  margin-bottom: 10px;
}
.choose-content p{
  font-size: 16px;
}
.choose-content .partner-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.choose-content .partner-content h4 {
  font-size: 30px;
  font-weight: bold;
}
.Aclass{
  margin: 30px 0;
}
.flex-div div h3{
  margin-bottom: 20px;
}
.add-directory div{
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}
.add-directory div input[type="submit"]{
  background-color: white !important;
  border: 1px solid #eee !important;
  outline: none !important;
  cursor: pointer;
  padding: 10px 40px !important;
  font-size: 16px;
  font-weight: 600;
}
.no-director{
  width: 100%;
  padding: 17px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eef2f8;
  border-radius: 8px;
}
.no-director p{
  color: #c3c3c3;
}
.regiseter-cont{
  color: #989898;
}
.contPerson{
  font-size: 20px;
  margin-bottom: 30px;
}
.submit{
  border-radius: 20px;
  padding: 10px 30px;
  cursor: pointer;
  outline: none;
  border: none;
  color: white;
  background-color: #072447;
  margin-top: 20px;
  transition: 0.4s;
}
.submit:hover{
  transform: scale(1.03);
}
.fileShape{
  position: relative;
}
.labelFile{
  padding: 17px 10px;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.labelFile div{
  width: 10px !important;
  height: 10px;
  background-color: white;
  padding: 20px;
  border: 1px dashed #989898;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.labelFile div img{
  width: 20px !important;
  height: 20px !important;
}
.fileShape p{
  line-height: 25px;
}
.fileShape input{
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
}
/* ======= Media ======== */
@media (max-width: 1024px){
  .forms-parent .container{
    width: 97%;
  }
}
@media (max-width: 768px){
  .form-inf .form .flex-div{
    flex-direction: column;
    flex-wrap: wrap;
  }
  .form-inf .form .flex-div div{
    width: 100%;
  }
}