html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    
}

.step-form .form-heading {
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #252525;
}

.field-holder {
    margin-bottom: 30px;   
}

.field-row {
    display: flex;
    align-items: center;
}

.account-name-field .edly-subdomain {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #252525;
    margin:0 0 5px 10px;
}

.step-form .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    text-align: center;
}
.step-form .cta-container p {
    margin-bottom: 0px;
    font-size: 16px;
    color: #252525;
}

.step-form .cta-container a {
    color: #0258ED;
    text-decoration: none;
    display: inline-block;
    margin-left: 5px;
    border-bottom: 1px dashed #0258ED;

}

.step-form .cta-container a:hover {
    border-color: transparent;
}

.step-form .cta-container .link-forgot-password {
    border-bottom: 1px solid rgba(221, 31, 37, 0.35);
    line-height: 0.95;
}

.btn {
    background: #dd1f25;
    border-color: #dd1f25;
    min-width: 116px;
    padding: 14px 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    border-radius: 0.5rem;
}

.btn:hover {
    background: #c71c21;
    border-color: #c71c21;
    color: #fff;  
}

.btn:focus {
    box-shadow: 0 0 0 3px rgba(221, 31, 37, 0.2); 
}

.btn.secondary {
    background: #FFFFFF;
    border-color:  #c71c21;
    color:  #c71c21;
    margin-left: 15px;
}

.btn.default {
    background-color: #fff;
    color: #252525;
    border-color:#fff;
    outline: none;
}

.btn.default:hover {
    background: #fff;
    border-color: #c71c21;
    color: #c71c21;
}

.btn.default:focus{
    box-shadow: none !important;
}

.btn.link {
    background-color: #fff;
    color: #c71c21;
    border-color:#fff;
    padding: 0;
    min-width: inherit;
    border-radius: 0;
}

.btn.link:hover {
    text-decoration: underline;
    color: #c71c21;
}

.btn.link:focus {
    box-shadow: none; 
}

.flex{
    display: flex;
}

.justify-between{
    justify-content: space-between;
}

.flex-direction{
    flex-direction: row;
}

.flex-48{
    flex: .48;
}

.flex-68{
    flex: .68;
}

.flex-1{
    flex: 1;
}

/* Form elements */
.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 5px 12px 7px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.25;
    color: #000;
    background: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 4px;
}

.form-control.small {
    height: 38px;
    line-height: 1.5;
}

.form-control:focus {
    outline: none;
    border-color: #dd1f25;
    box-shadow: none;
}

.form-control:-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:placeholder {
    color: #262626;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #ddd;
    opacity: 1;
    pointer-events: none;
}

.form-control.select {
    width: auto;
    display: inline-block;
}

.error .form-control {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.5);
}

.success .form-control {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.5);
}

.text {
    font-size: 14px;
}
.text-error {
    color: #dc3545;
    font-size: 14px;
}
.text-success {
    color: #28a745;
    font-size: 14px;
}

/***************************************************/
/*  Free Trial Feature */
/***************************************************/
.container.container-sm {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.navbar-brand {
    margin-right: 0;
}

.form-free-trial {
    color: #252525;
    padding: 30px 0;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.form-free-trial p {
    margin-bottom: 5px;
    font-size: 14px;
}

.form-free-trial .form-group-info {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 15px;
}

.form-free-trial .form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-free-trial .form-group.has-checkbox {
    padding: 1px 12px 1px 38px;
    position: relative;
    margin: 12px 0;
}

.form-free-trial .form-group.has-checkbox label {
    margin-bottom: 0;
    color: #666;
    font-size: 12px;
    line-height: 18px;
}

.form-free-trial .form-group.has-checkbox label:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #d7d7d7;
    opacity: 1;
}

.form-free-trial .form-group.has-checkbox input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
}

.form-free-trial .form-group.has-checkbox input[type="checkbox"]:checked+label {
    color: #252525;
}

.form-free-trial .form-group.has-checkbox input[type="checkbox"]:checked+label:before,
.form-free-trial .form-group.has-checkbox input[type="checkbox"]:checked+label:after {
    content: '';
    position: absolute;
    border-radius: 2px;
    z-index: -1;
}

.form-free-trial .form-group.has-checkbox input[type="checkbox"]:checked+label:before {
    width: 21px;
    height: 21px;
    left: 0;
    top: 0;
    border: 1px solid #00AD90;
    background: #fff;
}

.form-free-trial .form-group.has-checkbox input[type="checkbox"]:checked+label:after {
    width: 11px;
    height: 11px;
    left: 5px;
    top: 5px;
    background: #00AD90;
}

.form-free-trial .form-group.inline-fields select,
.form-free-trial .form-group.inline-fields input[type="text"] {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.form-free-trial .form-group label {
    margin-bottom: 6px;
    display: block;
}

.form-free-trial .form-group select,
.form-free-trial .form-group input[type="text"],
.form-free-trial .form-group input[type="email"],
.form-free-trial .form-group input[type="password"] {
    padding: 0.375rem 0.75rem;
    height: 38px;
    width: 100%;
    position: relative;
    border: 1px solid #d7d7d7;
    background-color: #fff;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-free-trial .form-group input[type="color"] {
    width: 40px;
    height: 40px;
    padding: 3px;
    border-color: transparent;
    border-radius: 3px;
}

.form-free-trial .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 50px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDExIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01LjExNzY1IDhMMCAwSDExTDUuMTE3NjUgOFoiIGZpbGw9IiM2NjY2NjYiLz4KPC9zdmc+Cg==');
    background-repeat: no-repeat;
    background-position: 96.5% center;
    color: #929292;
}

.form-free-trial .form-group input[type="text"].focused,
.form-free-trial .form-group input[type="text"]:focus,
.form-free-trial .form-group input[type="email"]:focus,
.form-free-trial .form-group input[type="password"]:focus,
.form-free-trial .form-group select.focused,
.form-free-trial .form-group select:focus,
.form-free-trial .form-group select:focus-visible {
    color: #252525;
    background-color: #fff !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(221, 31, 37, 0.25);
    border: 1px solid #ee8f92 !important;
}

.form-free-trial .link-tos {
    color: #666;
    text-decoration: underline;
}

.form-free-trial .password_checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-free-trial .password_checklist li {
    position: relative;
    padding-left: 16px;
    margin: 2px 0 2px 10px;
    color: #666;
    font-size: 12px;
    display: inline-block;
}

.form-free-trial .password_checklist li:first-child {
    margin-left: 0;
}

.form-free-trial .password_checklist li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F4F4F4;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.form-free-trial .password_checklist li.checked:before {
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgNi40MDI4MUwzLjA1Njg3IDguNDIyOTRDMy40NDU4OCA4LjgwNTAxIDQuMDY5MjcgOC44MDUwMSA0LjQ1ODI4IDguNDIyOTRMMTEuMTExMSAxLjg4ODkyIiBzdHJva2U9IiMwMEFEOTAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Custom input file upload */

.form-free-trial .form-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.form-free-trial .form-cta a {
    color: #666;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid transparent;
}

.form-free-trial .form-cta a img {
    margin-right: 15px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.form-free-trial .form-cta a:hover img {
    margin-right: 5px;
}

.form-free-trial .form-cta a:hover {
    text-decoration: none;
}

.form-free-trial .form-cta .btn:disabled,
.form-free-trial .form-cta .btn[disabled] {
    background: #bcbcbc;
    border-color: #bcbcbc;
    cursor: default;
}

.form-free-trial .form-cta .go-back {
    color: #666;
    font-size: 14px;
    letter-spacing: 0.15em;
    position: relative;
    border-color: transparent;
    background: transparent;
	border: none;
	cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
}

.form-free-trial .form-cta .go-back:hover {
    text-decoration: none;
}

.form-free-trial .form-cta .go-back img {
    transition: all 0.3s ease;
    margin-right: 10px;
}

.form-free-trial .form-cta .go-back:hover img {
    margin-right: 5px;
}

.form-free-trial .form-group .errorlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-free-trial .form-group .errorlist li {
    color: red;
    font-size: 14px;
}

.form-free-trial .form-group .errorlist + input {
    background-color: rgb(255, 242, 242);
    border-color: red;
}

.g-recaptcha {
    margin-top: 10px;
}

/* classes for tick icon for list bullet */
ul.password_checklist li:before {
    content: '𐄂';
    padding-right: 10px;
}

ul.password_checklist li.ticked:before {
    content: '✓' !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-10{
    margin-bottom: 10px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.registration-holder {
    display: flex;
    flex-flow: wrap row;
    min-height: 100vh;
}

.registration-holder .steps-panel {
    background: linear-gradient(to bottom, #F0F5FF 0%, #F5F8FE 25%, #EBF9F6 50%, #FEF7EC 100%);
    border-right: 1px solid #EAEAEA;
    position: relative;
    width: 300px;
    overflow: hidden;
}

.registration-holder .steps-panel:after {
    content: "";
    background-image: url( "../images/abstract-v.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 350px;
    height: 1000px;
    z-index: 2;
}

.registration-holder .step-form{
    display: block;
    width: calc(100% - 300px);
}

.step-form .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.nav-right{
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.back-home a {
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
    font-weight: bold;
}

.registration-holder .form-panel {
    width: 100%;
    padding: 0 30px 30px;
}

.registration-holder .form-panel .form-head {
    padding: 0 0 10px;
}

.registration-holder .form-panel .two-cols {
    display: flex;
    margin: 0 -15px;
}

.registration-holder .form-panel .two-cols .col {
    width: 50%;
}

.registration-header {
    padding: 0 15px;
    margin-bottom: 30px;

}

.registration-header .navbar {
    padding: 0;
}

/***************************************************/
/*  CSS Override Queries */
/***************************************************/

/* user Form styling override */
.user-form{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.social-icons {
    display: block;
    justify-content: space-between;
    align-items: center;   
}

.social-icons a {
    width: 100%;
    border:1px solid #d7d7d7;
    border-radius: 0.5rem;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
    color: #212529;
    text-transform: capitalize;
    transition: border-color 0.15s ease-in-out;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
}

.social-icons a:hover {
    border-color: #252525;
    cursor: pointer;
}

.social-icons a img {
    margin-right: 16px;
}

.option-or {
    text-align: center;
    margin: 20px 0;
}

.password-hint {
    color: rgb(115, 108, 108);
    margin-bottom: 0px !important;
    font-size: 11px;
    column-gap: 14px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 4px;
}

.password-hint li{
    position: relative;
    padding-left: 21px;
}

.password-hint li::after{
    content: "";
    background-image: url( "../images/cricle.svg");
    background-position: 50% 50%;
    background-repeat: no-repeat; 
    background-size: 8px;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 1px;
    padding: 1px;
}

.password-hint li.tick-icon::after{
    background-image: url( "../images/tick.svg");
    background-size: contain;
}

.eye-icon{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin-top: 5px;
}

.eye-icon svg{
    fill: #212529;;
}

.eye-icon .hide-display{
    display: none;
}

#id_user-password{
    padding-right: 80px;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.option-or::before{
    content: '';
    position: absolute;
    width: 45%;
    left: 0;
    top: 50%;
    border-top: 1px solid #d7d7d7;
}

.option-or::after{
    content: '';
    position: absolute;
    width: 45%;
    right: 0;
    top: 50%;
    border-top: 1px solid #d7d7d7;
}

.btn-submit{
    width: 100%;
}


/* Select site in google sign up flow styling */

.mock-background{
    background-image: url( "../images/mock_bg.svg");
    background-repeat: no-repeat; 
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(30, 29, 29, 0.3);

}

.check-email, .site-form  {
    background-color: white; 
    position: absolute; 
    left: 50%; 
    top: 60px; 
    width: 700px;
    transform: translateX(-50%); 
    height: fit-content; 
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 
    border-radius: 8px;
    padding: 24px 0px !important;
    
}

.check-email .form-head{
    padding: 0px !important;
    margin: 0px !important;
}

.check-email h4, .site-form h4, .check-email .info-block{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.check-email h4, .site-form h4{
    font-size: 18px;   
}

.check-email p, .check-email li{
    max-width: 500px;
}

.check-email li{
    color: rgb(115, 108, 108);
}

.check-email .info-block{
    font-size: 14px;
}

.radio-field{
    display: flex;
    flex-direction: column;
}

.radio-field span {
    display: inline-flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 4px;
  }

.radio-field label {
    display: block;
    position: relative;
}

.radio-field  label > input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    z-index: -10;
    height: 0;
    width: 0;
    background-clip: content-box;
}

.radio-field label > input:focus {
    outline: none;
}

.radio-field label > input:checked + span {
    background-color: silver;
}

.check-email ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 10px;
}

.check-email ul li {
    margin: 5px 0;
    padding-left: 15px;
    position: relative;
}

.check-email ul li:after {
    content: "";
    background: #252525;
    border-radius: 100%;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 9px;
    left: 0;
}

.check-email .form-cta{
    justify-content: flex-end !important;
    padding: 2rem 2rem 0;
}

.check-email .btn{
    height: fit-content !important;
    padding: 12px 24px !important;
}

.check-email .form-cta a{
    color: white !important;
}

/* Otp validation start here */
.otp-container {
    display: flex;
    justify-content: center;
    margin: 0px !important;
    padding: 0px !important;
    column-gap: 8px;
}

.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-input:focus, .email-otp-input:focus {
    border-color: #007bff;
}

/* Site form styling goes here */
.site-form .form-body{
    padding: 0px 2rem !important;
}

.site-form .form-group-info{
    max-width: 620px;
}

.site-form .form-cta{
    justify-content: flex-end !important;
    column-gap: 20px;
}

.site-form .form-cta .btn{
    flex: 1;
}

/* Otp SMS */
.iti {
    width: 100%;
}

.timer{
    margin-left: 20px;
}

.send-otp-btn{
font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.send-otp-btn:focus{
    outline: none;
}

/***************************************************/
/*  Media Queries */
/***************************************************/
@media (max-width: 991px) {

    html, body, .wrapper {
        height: auto;
    }

    .check-email, .site-form  {
        width: 500px;
    }

    .registration-holder .step-form {
        height: auto;
        padding-top: 30px;
        width: 100%;
    }

    .step-form .navbar-container {
        flex-direction: column;
    }

    .step-form .cta-container {
        flex-direction: column;
    }

    .step-form .cta-container .btn {
        margin: 0 0 20px;
    }

    .step-form .navbar-container {
        max-width: 100%;
        padding: 0 15px 15px;
        position: static;
    }
    .step-form .navbar-container  .navbar-brand{
        margin-bottom: 20px;
    }

    .registration-holder,
    .registration-holder .form-panel  {
        height: auto;
        width: 100%;
    }
    .form-free-trial {
        padding-top: 20px;
        padding-bottom: 80px;
    }
    .registration-holder .steps-panel {
        display: none;
    }
    .registration-header {
        background: #B5EADD;
        padding: 10px 30px;
    }
    .step-form .form-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .account-name-field .edly-subdomain {
        font-size: 14px;
    }

    .registration-holder .step-form {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .flex-direction{
        flex-direction: column;
    }

    .registration-holder .form-panel {
        padding: 0 15px 30px;
    }

    .step-form .navbar-container,
    .social-icons {
        flex-direction: column;
    }

    .social-icons div {
        margin: 10px 0;
        min-width: 100%;
    }

    .social-icons div:last-child {
        margin-bottom: 0;
    }
    .password-hint {
        display: flex;
        flex-direction: column;
    }

    .eye-icon{
        margin-top: -27px;
    }
}

@media (max-width: 600px) {

    .check-email, .site-form {
        width: 320px;
    }
    .user-form{
        height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .registration-header {
        margin-bottom: 20px;
    }
    .loginn-header {
        margin-bottom: 20px;
    }
    .form-free-trial {
        padding-top: 20px;
        padding-bottom: 40px;
        height: auto;
    }
    .form-free-trial .form-cta {
        flex-direction: column-reverse;
    }
    .form-free-trial .form-cta .btn {
        width: 100%;
        margin-bottom: 30px;
    }
    .form-free-trial.check-email .form-cta {
        margin-bottom: 0;
    }

    /* site form styling override for 600px */
    .site-form .form-group-info{
        max-width: 420px;
    }   
}

.email-unsubscribe {
    height: 100vh; 
    background-image: url( "../images/bg-wave.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 70%;
}

.mtb-4 {
    margin-left: 4vh;
    margin-top: 4vh;
}

.unsubscribe-email-centered-top {
    margin-top: -65vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unsubscribe-email-centered-top-medium {
    margin-top: 5vh;
    display: flex;
    justify-content: center;
}

.unsubscribe-email-centered-top-small {
    margin-top: 1vh;
    display: flex;
    justify-content: center;
}

.unsubscribe-email-button-div {
    margin-top: 1.5vh;
    display: flex;
    justify-content: center;
}
/* Responsive styling ended (do not add styling below this) */
