*{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body{
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    color: #333;
}

body html:-webkit-scrollbar-thumb {
  background: var(--primary);
  width: 4px;
  border-radius: 2px;
}

body html::-webkit-scrollbar-thumb {
  background: var(--primary);
  width: 11px;
  border-radius: 2px;
}

body html::-webkit-scrollbar-track {
  background-color: rgba(204, 204, 204, .4);
}

body html::-webkit-scrollbar-track {
  background-color: rgba(204, 204, 204, .4);
}

body a {
  transition-duration: 0.5s;
  text-decoration: none;
  scroll-behavior: smooth;
}

li{
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.container{
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}

section.vmForm{
    margin-top: 3em;
}

.vmForm_container {
    max-width: 22em;
    background-color: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
  }
  
  .vmForm_container label {
    color: black;
  }
  
  .vmForm_container .heading {
    font-size: 24px;
    color: black;
    margin-bottom: 12px;
    font-weight: bold;
    display: block;
  }
  
  .vmForm_container form {
    display: flex;
    flex-direction: column;
  }
  
  .vmForm_container label {
    margin-bottom: 10px;
  }
  
  textarea {
    resize: none;
    height: 80px;
    width: 200px;
  }
  
  .vmForm_container input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
  }

  .vmForm_container #compName{
    margin-bottom: 40px;
  }
  
  .vmForm_container input:focus {
    outline: none;
    box-shadow: 0 0 5px #ff6384;
    transform: scale(1.02);
  }
  
  .vmForm_container button[type="submit"], .vmPosh_content button[type="submit"], .posh-btn a{
      background-color: #ff6384;
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
  }
  
  .vmForm_container button[type="submit"]:hover, .vmPosh_content button[type="submit"]:hover, .posh-btn a:hover{
    transform: scale(1.02);
  }
  
  .posh-btn a button{
        font-size: 16px;
        border: 0;
        background: transparent;
        outline: none;
        color: #fff;
  }

  .vm_inputs {
    display: grid;
}

.radio-button-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.radio-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.radio-button__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button__label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
  color: #434343;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.radio-button__custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #555;
  transition: all 0.3s ease;
}

.radio-button__input:checked + .radio-button__label .radio-button__custom {
  background-color: #4c8bf5;
  border-color: transparent;
  transform: scale(0.8);
  box-shadow: 0 0 20px #4c8bf580;
}

.radio-button__input:checked + .radio-button__label P{
  color: #4c8bf5;
}

.radio-button__label:hover .radio-button__custom {
  transform: scale(1.2);
  border-color: #4c8bf5;
  box-shadow: 0 0 20px #4c8bf580;
}

.vmPosh_content {
  border: 1px solid #000;
  padding: 32px;
}

section.vmPosh {
  height: 100%;
  padding: 60px 18vw;
}

.vmPosh_inputs h4{
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 16px;
}

.vmPosh_inputs {
  margin-bottom: 20px;
}

label.radio-button__label p, .vmPosh_details .answer-details{
  font-size: 14px;
  text-transform: capitalize;
  color: #969696;
}

.vmPosh_details .answer-details{
  font-size: 16px;
  font-weight: 600;
}

.vmPosh_details .answer-details span{
  font-size: 18px;
  color: #ff6384;
  font-weight: 600;
}

.vmForm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vmForm-header img{
  max-width: 24%;
}

.posh-btn {
    max-width: 15em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.posh-btn button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.posh-btn button i, .posh-btn a i{
    padding-right: 6px;
}


/* Thank you Page */
.thankyou {
    max-width: 30%;
    text-align: center;
    border-radius: 0.5rem;
    background-color: #fff;
    margin: 120px auto;
}

.thankyou-header {
  padding: 1.25rem 1rem 1rem 1rem;
  overflow: hidden;
}

.company-logo{
    max-width: 7em;
    margin: 0 auto 30px;
}

.company-logo img{
    width: 100%;
}

.vm--img {
    width: 4rem;
    height: 4rem;
    display: flex;
    background-color: #e2feee;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    animation: animate .6s linear alternate-reverse infinite;
    transition: .6s ease;
    margin: 0 auto;
}

.vm--img svg {
  color: #0afa2a;
  width: 2rem;
  height: 2rem;
}

.vmPosh-form-para {
  margin-top: 30px;
  text-align: center;
}

.thankyou-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #066e29;
}

.thankyou-action {
  margin: 40px auto 0;
}

.ans-btn {
  background-color: #1aa06d;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 12px 20px;
}

@keyframes animate {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.09);
  }
}

