#all-contnr {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 3rem 0 6rem 0;
}

#ele-contnr {
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0.7rem 0.2rem;
   border: 1.5px solid var(--col2);
   border-radius: 12px;
   padding: 1rem;
   width: 93%;
   background-color: #fdf3d1;
   box-shadow: #3d2e29b0 5px 7px 20px, #ca8e53a1 -4px 7px 15px 0px;
}

.banner-contrn {
   display: none;
}

.sec-header {
   color: var(--txt-col4);
}

.sec-subheader {
   color: var(--txt-col2);
}

.sign-up-contrn {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.section {
   border: 1.5px solid var(--col2);
   padding: 0.8rem;
   width: 95%;
   background-color: var(--bg-col);
}

.section:nth-child(2) {
   border-radius: 12px 12px 0 0;
   border-bottom: none;
}

.section:nth-child(4) {
   border-radius: 0 0 12px 12px;
   border-top: none;
}

.section-header {
   width: 100%;
   font-size: 1.5rem;
   font-weight: 700;
   padding: 0.2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-right: 2rem;
   color: var(--txt-col3);

   * {
      color: var(--txt-col3);
   }
}

.section-content {
   height: 0;
   display: none;
   padding-top: 1.1rem;
   /* transition: 1s; */
}

.section-content.active {
   height: auto;
   display: block;
   transition: 1s;
}

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

.form-btn-container {
   width: 100%;
   display: flex;
   justify-content: right;
   align-items: end;
}

.form .btn {
   width: 50%;
   padding: 10px 20px;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   border-radius: 10px;
   border: solid 1px #1034aa;
   border-bottom: solid 1px #90c2ff;
   background: linear-gradient(135deg, #0034de, #006eff);
   color: #fff;
   transition: all 0.2s ease;
   box-shadow: 0px 2px 3px #000d3848, inset 0px 4px 5px #0070f0,
      inset 0px -4px 5px #002cbb;
}

.form .btn:active {
   box-shadow: inset 0px 4px 5px #0070f0, inset 0px -4px 5px #002cbb;
   transform: scale(0.995);
}

.form .btn:disabled {
   background: linear-gradient(135deg, #5f82f3, #3a7fda);
   box-shadow: inset 0px 4px 5px #6caaf1, inset 0px -4px 5px #506ac0;
   transform: scale(0.995);
   cursor: not-allowed;
}

.input-field {
   position: relative;
}

.input-field label {
   position: absolute;
   color: #8d8d8d;
   pointer-events: none;
   background-color: transparent;
   left: 15px;
   transform: translateY(0.6rem);
   transition: all 0.3s ease;
}

.input-field input {
   padding: 0.6rem 1rem;
   font-size: 1rem;
   border-radius: 8px;
   border: solid 1px var(--col2);
   letter-spacing: 1px;
   width: 100%;
}

.input-field input:disabled {
   cursor: not-allowed;
}

.input-field input:focus,
.input-field input:valid {
   outline: none;
   border: solid 1px var(--txt-col2);
}

.input-field input:focus~label,
.input-field input:valid~label {
   transform: translateY(-51%) translateX(-10px) scale(0.9);
   background: rgb(255, 248, 225);
   background: linear-gradient(180deg, rgba(255, 248, 225, 1) 0%, rgba(255, 255, 255, 1) 100%);
   padding: 0px 5px;
   color: var(--txt-col2);
   font-weight: bold;
   letter-spacing: 1px;
   border: none;
   border-radius: 100px;
}

.form .passicon {
   cursor: pointer;
   font-size: 1.3rem;
   position: absolute;
   top: 6px;
   right: 8px;
}

input.invalid {
   border: 1.7px solid #FF0000 !important;
}

.error-message {
   text-align: center;
   color: var(--txt-col3);
   font-size: 14px;
   margin: 0 0 5px 0;
}

.input-field .toggle-password {
   position: absolute;
   top: 50%;
   right: 15px;
   transform: translateY(-50%);
   cursor: pointer;
}

.fa-eye-slash,
.fa-eye {
   color: #8d8d8d;
}

.fa-circle-check {
   color: var(--col3);
}

@media screen and (min-width: 768px) {
   #ele-contnr {
      width: 75%;
   }

   .section {
      width: 85%;
   }
}

@media screen and (min-width: 1200px) {
   #all-contnr {
      margin: 0;
   }

   #ele-contnr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      height: 30rem;
      width: 85%;
   }

   .sign-up-contrn {
      height: 100%;
      overflow: auto;
      justify-content: start;
      align-items: center;
   }

   .banner-contrn {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      overflow: hidden;
      object-fit: cover;
      border-radius: 5px;
      box-shadow: 0 0 12px #8a5929d2;

      img {
         height: 100%;
      }
   }

   .section-header {
      font-size: 1.3rem;
   }

   .section {
      width: 90%;
   }
}

@media screen and (min-width: 1536px) {
   /* FOR EXTRA LARGE LAPTOP*/
}