/* .form-group {
    position: relative;
    margin-bottom: 0rem;
}

.form-control {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
}

.form-control.error {
    border-bottom: 1px solid #dc3545 !important;
}

.form-control-placeholder.error {
    color: #dc3545 !important;
}

.form-control:focus {
    box-shadow: none;
}

.form-control-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 0 0 0;
    transition: all 200ms;
    opacity: 0.8;
    color: #333;
    font-weight: bold;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder,
.form-control:not(:placeholder-shown):not(:focus):invalid+.form-control-placeholder {
    font-size: 75%;
    transform: translate3d(0, -75%, 0);
    opacity: 1;
} */

.field {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: .51em;
}

.field label,
.field input {
    transition: all 0.2s;
    touch-action: manipulation;
    margin-bottom: 0;
    color: #fff;
}

.field input {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .75);
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: text;
    background-color: transparent !important;
}

.field input:focus {
    outline: 0;
    border-bottom: 1px solid #fff;
}

.field label {
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
}


/**
* Translate down and scale the label up to cover the placeholder,
* when following an input (with placeholder-shown support).
* Also make sure the label is only on one row, at max 2/3rds of the
* field—to make sure it scales properly and doesn't wrap.
*/

.field input:placeholder-shown+label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2rem) scale(1);
    z-index: -1;
}


/**
* By default, the placeholder should be transparent. Also, it should 
* inherit the transition.
*/

::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}


/**
* Show the placeholder when the input is focused.
*/

.field input:focus::-webkit-input-placeholder {
    opacity: 1;
}


/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when 
* there's something in the input at all.
*/

.field input:not(:placeholder-shown)+label,
.field input:focus+label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
}

body {
    background: rgba(25, 26, 31, 1);
}

.registerAs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 100%;
    /* padding: 85px 50px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* background: #fff; */
    /* border-radius: 20px; */
    /* -webkit-box-shadow: 0px 8px 10px 0px #d8dfeb; */
    /* box-shadow: 0px 8px 10px 0px #d8dfeb; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.registerAs .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.registerAs .plan {
    cursor: pointer;
    width: 48.5%;
}

.registerAs .plan .plan-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #e1e2e7;
    border-radius: 1.5rem !important;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    position: relative;
    background-color: rgba(250, 250, 250, .9);
    text-align: left;
}

.registerAs .plan .plan-content img {
    margin-right: 30px;
    height: 72px;
}

.registerAs .plan .plan-details span {
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #252f42;
}

.container .title {
    font-size: 16px;
    font-weight: 500;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    color: #252f42;
    margin-bottom: 20px;
}

.registerAs .plan .plan-details p {
    color: #646a79;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}


/* .registerAs .plan .plan-content:hover {
    -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
    box-shadow: 0px 3px 5px 0px #e8e8e8;
} */

.registerAs .plan input[type="radio"]:checked+.plan-content:after {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background: #216fe0;
    right: 20px;
    top: 20px;
    border-radius: 100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
    box-shadow: 0px 0px 0px 2px #0066ff;
}

.registerAs .plan input[type="radio"]:checked+.plan-content {
    border: 2px solid #216ee0;
    background: #eaf1fe;
    -webkit-transition: ease-in 0.3s;
    -o-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
    .registerAs {
        margin: 1rem auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
    }
    .registerAs .plan {
        width: 100%;
    }
    .plan.agent-plan {
        margin-top: 1rem;
    }
    .registerAs .plan .plan-content .plan-details {
        width: 100%;
        display: inline-block;
    }
    .registerAs .plan input[type="radio"]:checked+.plan-content:after {
        top: 45%;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@media screen and (max-width: 767px) {
    .registerAs .plan .plan-content .plan-details {
        width: 100%;
        display: inline-block;
    }
}

@media screen and (max-width: 540px) {
    .registerAs .plan .plan-content img {
        margin-bottom: 20px;
        height: 56px;
        -webkit-transition: height 0.4s;
        -o-transition: height 0.4s;
        transition: height 0.4s;
    }
    .registerAs .plan input[type="radio"]:checked+.plan-content:after {
        top: 20px;
        right: 10px;
    }
    .registerAs .plan .plan-content .plan-details {
        width: 100%;
    }
    .registerAs .plan .plan-content {
        padding: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}


/* inspiration */

.inspiration {
    font-size: 12px;
    margin-top: 50px;
    position: absolute;
    bottom: 10px;
    font-weight: 300;
}

.inspiration a {
    color: #666;
}

@media screen and (max-width: 767px) {
    /* inspiration */
    .inspiration {
        display: none;
    }
}