body{
    background: #f5f7fa;
}

.c-page{
    padding: 20px 0;
}
.c-page .c--body{
    max-width: 920px;
    margin: 0 auto;
    min-height: 600px;
    padding: 24px 32px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px 0px;
    border-radius: 8px;
    font-family: Poppins, Inter, "Segoe UI", Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.c--icon-row{
    margin-bottom: 23px;
}
.c-page .c--body .sc-icon{
    width: 250px;
    height: auto;
}
.c-page .c--body h1{
    color: #00a86b;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 32px;
    line-height: 125%;
}
.c-page .c--body p{
    margin-bottom: 0;
    margin-top: 0;
    color: #333;
    font-size: 16px;
    line-height: 140%;
}
.c-page .c--body .c-intro{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.c-page .c--body .c-btns{
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    padding-top: 5px;
}
.c-page .c--body .c-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 250ms;
    background-color: #007bff;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    min-height: 42px;
    padding: 0 21px;
    cursor: pointer;
    padding-top: 8px;
    padding-bottom: 8px;
}
.c-page .c--body .c-btn:hover{
    background-color: #0571e5;
}
.c-page .c--body .c-btn:active{
    background-color: #1b80ee;
}

.c-page .c--body .c-btn.submit{
    min-width: 260px;
}
.c-page .c--body .c-btn.submit.loading{
    pointer-events: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    cursor: default;
}
.c-page .c--body .c-btn.submit img{
    display: none;
}
.c-page .c--body .c-btn.submit.loading img{
    display: block;
}

.c-page .c--body .c-btn.submit .text{
    display: inline-block;
}
.c-page .c--body .c-btn.submit.loading .text{
    display: none;
}

.c-page .c-form .c---body{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 34px;
    position: relative;
    min-height: 80px;
}

.c-page .c-form .c---body .c--content{
    transition: height 300ms;
}
.c-page .c-form .c---inner{
    position: relative;
}
.c-page .c-form .c-frm-row{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.c-page .c-form .c-label{
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 0px;
}
.c-page .c-form .c--title{
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 130%;
}

.c-page .c-form input{
    display: block;
    width: 100%;
    /*padding: 8px 12px;*/
    height: 42px;
    margin-bottom: 0px;
    padding-top: 7px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 6px;
    color: #000;
    font-size: 15px;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    transition: border-color 250ms ease-in-out;
}
.c-page .c-form input:focus{
    border-color: #3898EC;
    outline: 0;
}

.c-page .c-form .has-float-label input{
    padding-top: 17px;
    padding-bottom: 8px;
    min-width: 214px;
}

.c-page .c-form h2{
    font-size: 25px;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 100%;
}

.c-page .c-form .c--error{
    font-size: 12px;
    line-height: 100%;
    font-weight: 700;
    color: red;
    padding-left: 13px;
}
.c-page .c-form .c--inner .c--frm{
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.c-page .c-form .c-frm-column{
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.c-page .c-form .c--frm-table .c--leading-col,
.c-page .c-form .c--frm-table .c--trailing-col{
    flex: 1;
}
.c-page .c-form .c--frm-table{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.c-socials .c--title{
    margin-bottom: 5px;
}

.c-more-info{
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    transition: all .2s;
}

.has-float-label {
    display: block;
    position: relative;
}
.has-float-label label, .has-float-label > span {
    position: absolute;
    left: 13px;
    top: 0px;
    cursor: text;
    font-size: 72%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #5b5b5b;
    margin-bottom: 0;
    font-weight: 600;
}
.has-float-label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.has-float-label textarea {
    width: 100%;
}
.has-float-label input, .has-float-label select, .has-float-label textarea {
    padding-top: 1.2em;
}
.has-float-label input::-webkit-input-placeholder, .has-float-label select::-webkit-input-placeholder, .has-float-label textarea::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.has-float-label input::-moz-placeholder, .has-float-label select::-moz-placeholder, .has-float-label textarea::-moz-placeholder {
    opacity: 1;
    transition: all .2s;
}
.has-float-label input:-ms-input-placeholder, .has-float-label select:-ms-input-placeholder, .has-float-label textarea:-ms-input-placeholder {
    opacity: 1;
    transition: all .2s;
}
.has-float-label input::placeholder, .has-float-label select::placeholder, .has-float-label textarea::placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.has-float-label input:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus)::placeholder, .has-float-label select:placeholder-shown:not(:focus)::placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus) + *, .has-float-label select:placeholder-shown:not(:focus) + *, .has-float-label textarea:placeholder-shown:not(:focus) + * {
    font-size: 15px;
    opacity: 1;
    top: 28%;
    font-weight: 400;

}
.has-float-label input:focus, .has-float-label select:focus, .has-float-label textarea:focus {
    /*outline: none;
    border-color: rgba(0, 0, 0, 0.5);*/
}
.has-float-label select {
    padding-right: 1em;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.5em bottom 0.25em;
    background-size: 8px 10px;
}

@media (max-width: 520px) {
    .c-page .c--body .c-btn.submit{
        width: 100%;
    }
}

/*Success*/
.c--frm-success{
    padding-top: 30px;
    padding-bottom: 60px;
}
.c--frm-success .wrapper {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #eee;*/
    margin-bottom: 15px;
}
.c--frm-success .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.c--frm-success .checkmark {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}
.c--frm-success .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.c--frm-success .lead-text{
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: rgb(51, 51, 51);
    font-size: 28px;
    line-height: 34px;
}
.c--frm-success .footer-text{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    color: rgb(51, 51, 51);
}
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #7ac142;
    }
}