.form-cont{
    position: relative;
    margin-top: 45px;
}        
.ribbon-tab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(60deg,rgba(176, 9, 9, 1) 32%, rgba(12, 12, 13, 1) 100%);
    color: #222;
    font-weight: bold;
    padding: 12px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    background-blend-mode: screen;
}
.ribbon-tab::before{
    content: '';
    bottom: 27px;
    right: -21px;
    border-left: 0px solid transparent;
    border-right: 25px solid transparent;
    border-top: 17px solid rgba(176, 9, 9);
    z-index: 1;
    position: absolute;
    transform: rotate(270deg);
}
.ribbon-tab::after{
    content: '';
    bottom: 27px;
    left: -21px;
    border-left: 25px solid transparent;
    border-right: 0px solid transparent;
    border-top: 17px solid black;
    z-index: 1;
    position: absolute;
    transform: rotate(90deg);
}
.form-bottom{
    border-radius: 0 0 70px 70px;
    padding: 10px 0;
}
.special-form {
    padding: 15px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
    background-color: white;
    overflow: hidden;
    padding-top: 45px;
    border: 1px solid #ddd9d9;
    padding-bottom: 0px;
}
.org-drop{
    padding-left: 4px !important;
}
.banner-iso{
    margin-bottom: 8px;
    margin-left: -2px;
    height: 30px;
}

.ribbon-tab h2 {
    font-size: 21px;
    margin-bottom: 0px;
    color: white;
}
.special-form input, .special-form textarea, .special-form select{
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    border-radius: 5px;
    border: 0px solid #747576;
    background: #e4e4e469;
    color: black;
    outline: none;
}
.special-form input::placeholder, .special-form textarea::placeholder, .special-form select {
    color: rgb(116, 114, 114);
    font-size:15px;
}
.special-form input:focus{
    border: 1px solid #747576;
    border-radius: 5px;
}
.special-form textarea:focus{
    border: 1px solid #747576;
    border-radius: 5px;
}
.special-btn {
    font-size: 16px;
    border: none;
    color: white !important;
    border-radius: 0px;
    background: linear-gradient(60deg,rgba(176, 9, 9, 1) 32%, rgba(12, 12, 13, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 50%;
    padding-top: 15px;
    position: relative;
    overflow: hidden;
}
.special-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, transparent, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
    transition: left 0.7s ease;
  }
  .special-btn:active, .special-btn:focus{
    box-shadow: none !important;
    border: none;
    outline: 0;
    color: white;
  }
  .special-btn:hover::after {
    animation: shineMove 1.2s ease;
  }
  
  @keyframes shineMove {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  
  /* Border Lines */
  .special-btn span {
    position: absolute;
    display: block;
    background: white;
    transition: 0.5s ease;
  }
  
  /* Top border */
  .special-btn span:nth-child(1) {
    top: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
  }
  .special-btn:hover span:nth-child(1) {
    width: 100%;
    transform: translateX(100%);
  }
  
  /* Right border */
  .special-btn span:nth-child(2) {
    top: 0;
    right: 2px;
    width: 0px;
    height: 0;
    background: white !important;
  }
  .special-btn:hover span:nth-child(2) {
    height: 100%;
    width: 2px;
    transform: translateY(100%);
  }
  
  /* Bottom border */
  .special-btn span:nth-child(3) {
    bottom: 2px;
    right: 0;
    width: 0;
    height: 0px;
  }
  .special-btn:hover span:nth-child(3) {
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
  }
  
  /* Left border */
  .special-btn span:nth-child(4) {
    bottom: 0;
    left: 2px;
    width: 0px;
    height: 0;
  }
  .special-btn:hover span:nth-child(4) {
    height: 100%;
    width: 2px;
    transform: translateY(-100%);
  }
.special-btn:hover{
    color: white !important;
}

  
.glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: glare 2s linear infinite;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}
@keyframes glare {
    0% {
        left: -100%;
    }
    100% {
        left: 80%;
    }
}
.glare span:nth-child(1),
.glare span:nth-child(3) {
  width: 100%;
}

.glare span:nth-child(2),
.glare span:nth-child(4) {
  height: 100%;
}
@media(max-width:1400px){
    .ribbon-tab{
        padding: 12px 25px;
    }
}
@media(min-width:992px) and (max-width:1200px){
    .ribbon-tab{
        padding: 12px 12px;
    }
}
@media(max-width:375px){
    .ribbon-tab{
        padding: 12px 12px;
    }
}