html {
    height: 100%;
    font-size: 16px;
}

body {
    background: linear-gradient(-45deg, #E6FBF9, #F4EBFF,#F9F5FF,#B1F4ED);
    font-family: 'Saira', sans-serif;
    height: 100%;
    padding: 40px 0 40px 0;
    animation: gradient 10s ease infinite;
    background-size: 400% 400%;
}


@keyframes gradient {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}

.main-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* .logo-tag {
    color: #6200EE;
    background-color: #fff;
    border: 1px solid #6200EE;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
} */

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link:hover {
    text-decoration: none;
}

.main-layout__title {
    font-size: 3.75rem;
    color: #fff;
    margin-top: 64px;
    margin-bottom: 12px;
    line-height: 4.875rem;
    font-weight: 700;
    letter-spacing: -1.25px;
    background: linear-gradient(to right,#6941C6, #03C6B3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-layout__description {
    font-size: 1.5rem;
    color: #344054;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 48px;
    line-height: 2.125rem;
    font-family: 'Roboto';
}
.main-layout__description span{
    background: linear-gradient(to right,#6941C6, #03C6B3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.form-label {
    display: block;
    color: #101828;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

.form-group {
    margin-bottom: 0;
    margin: auto;
    width: 380px;
}
.form-group  .mailpoet-screen-reader-text{
    display: none;
}
.form-control,input[type=email] {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    height: 44px !important;
    color: #9CA3AF !important;
    background-color: #FFFFFF !important;
    background-clip: padding-box !important;
    border: 0.5px solid #D0D5DD !important;
    appearance: none !important;
    border-radius: 8px !important;
    transition: border-color 0.3s ease-in-out;
    font-family: 'Roboto';
}
input[type=email]::placeholder{
    color: #98A2B3;
}
.form-control:focus,input[type=email]:focus {
    border: 1px solid #0eb8b5 !important;
    box-shadow: none;
}

.form-group .button, .form-group input[type=submit] {
    font-size: 1.125rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important; 
    position: relative !important;
    padding: 10px 16px !important;
    vertical-align: middle !important;
    border: 1px solid transparent !important;
    color: #fff !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
    background: #3C008F !important;
    width: 100% !important;
    line-height: normal !important;
    max-width: 100% !important;
    border-radius: 90px;
    margin-top: 32px;
}
.form-group .button:focus{
    outline: none !important;
}

.button:hover {
    text-decoration: none;
    opacity: .7;
}

.main-layout__footer {
    color: #475467;
    font-size: 0.875rem;
    margin-bottom: 0;
    margin-top: 40px !important;
    font-family: 'Roboto';
    line-height: 18px;
    font-weight: 400;

}

.margin-none {
    margin: 0;
}
.right-color{
    background-color: #F4EBFF;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: fixed;
    top: -175px;
    right: -175px;
    bottom: auto;
    left: auto;
    filter: blur(70px);
    animation: animatedRightBackground 20s linear infinite;
}
@keyframes animatedRightBackground {
    0% {
      top: -175px;
      right: -175px;
    }
    25% {
        top: calc(100% - 175px);
        right: -175px;
      }
      50% {
        top: -175px;
        /* top: calc(100% - 175px); */
        right: calc(100% - 175px);
      }
      /* 75% {
        top: -175px;;
        right: calc(100% - 175px);
      } */
    100% {
        top: -175px;
        right: -175px;
    }
  }
.left-color{
    background-color: #F4EBFF;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: fixed;
    bottom: -175px;
    left: -175px;
    filter: blur(70px);
    animation: animatedLeftBackground 20s linear infinite;

}
@keyframes animatedLeftBackground {
    0% {
      bottom: -175px;
      left: -175px;
    }
    25% {
        bottom: calc(100% - 175px);
        left: -175px;
      }
      50% {
        /* bottom: calc(100% - 175px); */
        bottom: -175px;
        left: calc(100% - 175px);
      }
      /* 75% {
        bottom: -175px;
        left: calc(100% - 175px);
      } */
    100% {
        bottom: -175px;
        left: -175px;
    }
  }

  .main-title-description{
    width: 700px;
  }

@media (max-width:1400px) and (min-width:1300px) {
    html{
        font-size: 13px;
    }
    body{
        padding: 30px 0;
    }
    .brand{
        width: 90px;
    }
}
@media (max-width:1299px) and (min-width:1200px) {
    html{
        font-size: 10px;
    }
    body{
        padding: 30px 0;
    }
    .brand{
        width: 80px;
    }
}
@media (max-width:1199px) and (min-width:1000px) {
    html{
        font-size: 10px;
    }
    body{
        padding: 20px 0;
    }
    .brand{
        width: 70px;
    }
    .main-title-description{
        width: 500px;
      }
    .form-group{
        width: 280px;
    }
    .form-control, input[type=email]{
        height: 32px !important;
    }
    .form-group .button, .form-group input[type=submit]{
        height: 35px !important;
        margin-top: 20px;
    }
    .main-layout__title{
        margin-top: 35px;
    }
    .main-layout__description{
        margin-bottom: 40px;
    }
    .main-layout__footer{
        margin-top: 25px !important;
    }
}
@media (max-width: 575.98px) {
    body{
        padding: 40px 20px;
    }
    .main-layout__title {
        font-size: 35px;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 43px;
    }

    .main-layout__description {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 25px;
    }
    .form-group , .main-title-description{
        width: 100%;
    }
    .form-label{
        font-size: 17px;
    }
}
.wpsf-form-wrap.wpsf-template-1{
   width: 100% !important;
   padding: 0 !important;
   max-width: 100% !important;
   font: inherit;
   background:transparent;
}
.wpsf-form-wrap .both-fields-wrap{
    margin: 0;
}
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.response{
    margin-top: 10px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
}
.response.error-msg {
    color: #e02a2a;
}
.response.success-msg{
    color: #009224;
}