:root {
    --primary-color: #2A7BC4;
    --secondary-color: #f5f5f5;
}

.main {
    height: 100%;
    display: -ms-grid;
    display: grid;
    place-content: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Header Adjustments */
/* ================== */

@media (max-width: 991px) {
    header .btn.btn-primary{
        padding: 5px 16px!important;
    }
    header .btn.btn-primary span, header .btn.btn-primary i{
        font-size: 13px!important;
    }
}
@media(min-width: 992px){
    header .btn.btn-primary span{
        font-size: 14px!important;
    }
    header .btn.btn-primary{
        padding: 10px 20px!important;
    }
}
header .btn.btn-primary i{
    -ms-flex-item-align: center!important;
    -ms-grid-row-align: center!important;
    align-self: center!important;
}
@media (max-width: 575px) {
    header .btn.btn-primary {
        padding: 11.1px 16px!important;
    }
}

/* ================ */

.blue-line {
    display: none;
}

h1, h2, h3, p {
    margin: 0;
    letter-spacing: -.05em;
}

.main-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 650px 450px;
    grid-template-columns: 650px 450px;
    border-radius: 4px;
    overflow: hidden;
}

.main-layout {
    place-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 60px;
}
section {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* Heading */
/* ======= */

#heading {
    margin-bottom: 1.5rem;
}

header {
    min-height: 100px !important;
}

#heading p, #heading p span {
    width: 100%;
}

#heading span {
    color: var(--primary-color)
}

#heading h1 {
    font-size: 24px !important;
    color: var(--primary-color);
    font-weight: 400 !important;
    margin-bottom: .5rem;
}

.three-arrows {
    margin-right: .5rem;
    width: 30px;
    height: 30px;
}

.login-arrow {
    width: 17px;
    height: 17px;
}

/* Register */
/* ======== */

/* Form */
/* ==== */

.left-form {
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-heading {
    margin-bottom: 1.5rem;
}
.form-heading h2 {
    font-size: 24px !important;
    font-weight: 400;
    color: black !important;
}

.form-heading p {
    color: #5f5f5f;
    font-weight: 400;
}

.form-heading p span {
    color: var(--primary-color);
    line-height: 130%;
}

.email-placeholder,
.company-name-placeholder,
.uid-name-placeholder,
.address-name-placeholder,
.plz-name-placeholder,
.city-name-placeholder,
.prefix-name-placeholder,
.first-name-placeholder,
.last-name-placeholder {
    position: absolute;
    font-size: 14px;
    left: 1rem;
    margin: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: gray;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.country-name-placeholder,
.business-form-placeholder,
.phone-number-placeholder,
.first-name-s2-placeholder,
.last-name-s2-placeholder {
    position: absolute;
    font-size: 10.5px;
    left: 1rem;
    margin: 0;
    top: 25%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: gray;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

select {
    height: 30px;
    width: 100%;
    padding-left: 1rem;
    color: black;
    font-weight: 400;
    background-color: white;
    border: none;
    border-radius: 7px;
}

.name-input {
    height: 45px;
    border-radius: 7px;
    border: 1px solid #CCCCCC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: white;
    position: relative;
}

input {
    border: none;
    height: 30px;
    text-indent: 1rem;
    border-radius: 7px;
    padding: 0;
    font-weight: 400 !important;
}

input:focus {
    outline: none;
}

label {
    pointer-events: none;
}

.name-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    grid-gap: 1.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr;
}

.name-input {
    width: 100%;
}

.name-input input {
    width: 100%;
}

#email {
    width: 100%;
}

.agb-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

#agb-label {
    font-size: 12px;
    margin-left: .5rem;
    letter-spacing: -.04rem;
    pointer-events: all !important;
    color: #2D2D2D;
}

.registration-form button {
    background-color: var(--primary-color);
    width: 100%;
    color: white;
    font-weight: 500;
    padding: .5rem 0;
    font-size: 16px;
}

.registration-form button:hover {
    color: white;
    opacity: .7;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    background-color: var(--primary-color) !important;
}

.registration-form button:focus-visible {
    background-color: var(--primary-color);
    color: white;
    outline: #00b1e1;
}

/* Error Message */
/* ========== */

.small {
    font-size: 90%;
    margin-top: .4rem;
}


/* Benefits */
/* ======== */

.benefits {
    padding: 3rem 2rem;
}

.benefits h2 {
    font-size: 24px !important;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: .5rem;
}

#heading h1, p, .benefits h2, #heading p span, label {
    line-height: 130% !important;
}

.icon-box {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.icon-box img {
    width: 20px;
    height: 20px;
}

.benefits-boxes {
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5rem;
    margin-top: 3rem;
}


.benefit-box {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 1rem;
    -ms-grid-columns: auto 1rem 1fr;
    grid-template-columns: auto 1fr
}

/* Footer */
/* ====== */

#footer {
    background-color: var(--primary-color);
    min-height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    margin: 0;
}

#footer p, #footer a {
    color: white;
    font-size: 14px;
}

.center-element {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.footer-elements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Laptop Versions */
/* ============== */

@media screen and (max-width: 1400px) {
    .main-layout {
        -ms-grid-columns: 536px 400px;
        grid-template-columns: 536px 400px;
    }

    #heading h1, .benefits h2, .form-heading h2 {
        font-size: 19px !important;
    }

    .form-heading {
        margin-bottom: 1rem;
    }

    .form-heading a {
        font-size: 13px;
    }

    .benefits, .left-form {
        padding: 2rem 1.5rem;
    }

    .icon-box {
        width: 30px;
        height: 30px;
    }

    .icon-box img {
        width: 15px;
        height: 15px;
    }

    .benefits-boxes {
        /*gap: 1rem;*/
        margin-top: 2rem;
    }

    .benefits-box {
        grid-gap: .5rem;
    }

    .small {
        font-size: 75%;
    }

    p {
        font-size: 13px;
    }

    .agb-text {
        margin-top: 1.5rem;
    }

    #agb-label {
        width: 90%;
    }

    #footer {
        height: 50px;
    }
}

/* Tablet M Version */
/* ================ */

@media screen and (max-width: 1025px) {
    .main-layout {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        /*-ms-grid-rows: 1fr 1fr;*/
        /*grid-template-rows: 1fr 1fr;*/
    }
    .main-layout > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    /*.main-layout > *:nth-child(2) {*/
    /*    -ms-grid-row: 2;*/
    /*    -ms-grid-column: 1;*/
    /*}*/

    .main {
        height: auto;
    }

    .name-inputs {
        gap: 1.5rem;
    }

    .small {
        font-size: 85%;
    }

    #heading, #heading-and-form {
        padding: 0;
    }

    #heading h1, .benefits h2, .form-heading h2 {
        font-size: 28px !important;
        font-weight: 400 !important;
    }

    .left-form, .benefits {
        padding: 3rem 4rem;
    }

    .form-heading {
        margin-bottom: 1.5rem;
    }

    p, .form-heading a {
        font-size: 16px;
    }

    #heading {
        margin-bottom: 3rem;
    }

    #heading h1 {
        margin-bottom: 1rem;
    }

    #heading p {
        width: 80%;
    }

    #agb-label {
        width: 90%;
        font-size: 14px;
    }

    .benefits h2 {
        width: 70%;
        margin-bottom: 1rem;
        margin-inline: auto;
    }

    .benefits-boxes {
        gap: 2rem;
    }

    .icon-box {
        width: 40px;
        height: 40px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    #footer {
        margin-top: 2rem;
        min-height: 70px;
    }
}

/* Tablet S Version */
/* ================ */

@media screen and (max-width: 640px) {
    #heading p {
        width: 95%;
    }

    .benefits h2 {
        width: 90%;
    }
}

/* Mobile XL Version */
/* ================= */

@media screen and (max-width: 440px) {
    header img {
        max-width: 175px;
        height: 40px;
    }

    .left-form, .benefits {
        padding: 2rem 1.5rem;
    }

    .main-layout {
        grid: none;
    }

    #heading h1, .benefits h2, .form-heading h2 {
        font-size: 24px !important;
    }

    .three-arrows {
        margin-right: .2rem;
    }

    #heading p {
        width: 95%;
    }

    p, .form-heading a {
        font-size: 14px;
    }

    .name-inputs {
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .name-inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .name-inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .name-inputs > *:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    #agb-label {
        font-size: 12px;
    }

    .benefits h2 {
        width: 100%;
    }

    .benefits-boxes {
        margin-top: 3rem;
    }

    .benefit-box {
        gap: .5rem;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .icon-box {
        display: none;
    }

    .blue-line {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 5px;
        background-color: var(--primary-color);
        display: block;
    }

    #footer {
        min-height: 90px;
    }

    .footer-elements {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
    }

    .center-element {
        padding-top: .5rem;
    }

    .right-element {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding-bottom: .5rem;
    }
}

/* Mobile M Version */
/* ================ */

@media screen and (max-width: 411px) {
    #heading h1, .benefits h2, .form-heading h2 {
        font-size: 22px !important;
    }

    #heading h1, .benefits h2 {
        margin-bottom: .5rem;
    }

    #heading {
        margin-bottom: 2rem;
    }

    p, .form-heading a  {
        font-size: 12px !important;
    }

    #heading p {
        width: 100%;
    }

    .benefits-boxes {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    #footer a {
        font-size: 12px;
    }
}

/* Mobile S Version */
/* ================ */

@media screen and (max-width: 364px) {
    #heading h1, .benefits h2, .form-heading h2 {
        font-size: 20px !important;
    }

    .left-form, .benefits {
        padding: 1.5rem .7rem;
    }

    #agb-label {
        font-size: 10px !important;
    }
}

/* ======= */
/* Seite 2 */
/* ======= */

/* Email confirmation */
/* ================== */

#verify {
    position: relative;
}

#confirm-email {
    width: 70%;
    padding: 1rem;
    background-color: #E3EEF7;
    margin: auto;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1rem 1fr;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 1rem;
}

#confirm-email p {
    color: var(--primary-color);
    font-weight: 500;
}

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

.heading-p {
    width: 70%;
}

.form-heading h1 {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: black;
    line-height: 130%;
}

.heading-h2 {
    margin-bottom: 1rem;
}

.grid-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.business-form {
    position: relative;
}

#uid-name {
    text-transform: uppercase;
}

.uid-info {
    color: gray;
}

.business-form img, .country-select img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: .5rem;
    pointer-events: none;
}

.phone-number-input {
    position: relative;
}

.phone-number {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
}

#prefix-select {
    height: 100%;
}

.name-inputs-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
}

.plz-city-country-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 2fr 1.5rem 2fr;
    grid-template-columns: 1fr 2fr 2fr;
    grid-gap: 1.5rem;
}

.form-wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5rem;
}

.business-form {
    position: relative;
}

.company-name-wrapper, .uid-name-wrapper {
    display: none;
}

.country-select {
    position: relative;
}

.country-prefix {
    width: 70px;
    position: relative;
}

.country-prefix img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1.3rem;
    pointer-events: none;
}

.s2-button {
    margin-top: 2rem;
}
@media screen and (max-width: 1400px) {
    .form-heading h1 {
        font-size: 20px !important;
    }

    .heading-p {
        width: 80%;
    }

    input {
        text-indent: .5rem;
    }

    select {
        padding-left: .5rem;
    }

    .business-form-label {
        left: .5rem;
    }

    .first-name-placeholder,
    .last-name-placeholder,
    .email-placeholder,
    .company-name-placeholder,
    .uid-name-placeholder,
    .address-name-placeholder,
    .plz-name-placeholder,
    .city-name-placeholder,
    .country-name-placeholder,
    .prefix-name-placeholder,
    .business-form-placeholder,
    .phone-number-placeholder,
    .first-name-s2-placeholder,
    .last-name-s2-placeholder{
        left: .5rem;
    }

    .prefix-name-placeholder {
        width: 60px;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 1025px) {

    #confirm-email {
        width: 100%;
    }

    .form-heading h1 {
        font-size: 28px !important;
    }

    .heading-h2 {
        margin-bottom: 1rem;
    }

    input {
        text-indent: 1rem;
    }

    select {
        padding-left: 1rem;
    }

    .first-name-placeholder,
    .last-name-placeholder,
    .email-placeholder,
    .company-name-placeholder,
    .uid-name-placeholder,
    .address-name-placeholder,
    .plz-name-placeholder,
    .city-name-placeholder,
    .country-name-placeholder,
    .prefix-name-placeholder,
    .phone-number-placeholder,
    .business-form-placeholder,
    .first-name-s2-placeholder,
    .last-name-s2-placeholder {
        left: 1rem;
    }
}

@media screen and (max-width: 440px) {

    #confirm-email img {
        display: none;
    }

    .form-heading h1 {
        font-size: 24px !important;
    }

    .heading-p {
        width: 90%;
    }

    .name-inputs-wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .plz-city-country-wrapper {
        -ms-grid-columns: 1fr 1.5rem 2fr;
        grid-template-columns: 1fr 2fr;
    }

    .country-select {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3;
    }

}

@media screen and (max-width: 411px) {
    .form-heading h1 {
        font-size: 18px !important;
    }
}

/* ======= */
/* Seite 3 */
/* ======= */

.heading-left-s3 {
    margin-bottom: 2rem;
}

.heading-left-s3 h1 {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: var(--primary-color);
    line-height: 130%;
}

.heading-left-s3 img {
    vertical-align: unset !important;
    width: 1.5rem;
    margin-left: .5rem;
}

.heading-left-s3 p {
    margin-top: .5rem;
}

.check-email {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #E3EEF7;
    border-radius: 7px;
}

.check-email img {
    width: 1.2rem;
    margin-right: .5rem;
}

.check-email h2 {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: var(--primary-color);
    line-height: 130%;
}

.check-email-heading {
    margin-bottom: .5rem;
}

.check-email-text {
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
}

.check-email p {
    font-weight: 400 !important;
}

.check-email p span {
    font-weight: 600 !important;
    line-height: 130%;
}

.heading-right-s3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.handshake-img {
    max-width: 90%;
    max-height: 90%;
}

.gray-underline {
    width: 20%;
    height: 3px;
    border-radius: 50px;
    background: #D9D9D9;
}

.heading-right-s3 h2 {
    color: black;
}

.email-troubleshooting {
    margin-top: 2rem;
    display: -ms-grid;
    display: grid;
    grid-gap: 2rem;
}

.email-troubleshooting span {
    line-height: 130%;
    font-weight: 600 !important;
}

.email-s3 {
    margin-top: .5rem;
}

.s3-email-button {
    position: absolute;
    right: 6px;
    height: 36px;
    width: 36px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 6px !important;
    background-color: var(--primary-color);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.s3-email-button:hover {
    transition: .6s;
    opacity: .7;
}

.email-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.send-email-again {
    margin-top: .5rem;
    font-weight: 600 !important;
    color: var(--primary-color);
    cursor: pointer;
    background-color: transparent;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    padding: .5rem 0;
    width: 100%;
}

.send-email-again:hover {
    color: #FFF;
    background-color: #2A7BC4;
    border-color: #2A7BC4;
    transition: .6s;
    opacity: .7;
}

.blue-line-s3 {
    width: .5rem;
    background-color: var(--primary-color);
    display: block;
    margin-right: 1rem;
    border-radius: 7px 0 0 7px;
}

@media screen and (max-width: 1400px) {
    .heading-left-s3 h1, .check-email h2 {
        font-size: 19px !important;
    }

    .heading-left-s3 img {
        width: 1.3rem;
    }
}

@media screen and (max-width: 1025px) {
    .heading-left-s3 h1, .check-email h2 {
        font-size: 28px !important;
    }

    .heading-left-s3 img {
        width: 2rem;
    }

    .check-email img {
        width: 1.5rem;
    }
}

@media screen and (max-width: 440px) {
    .heading-left-s3 h1, .check-email h2 {
        font-size: 24px !important;
    }

    .heading-left-s3 img {
        width: 1.3rem;
    }

    .check-email img {
        width: 1.3rem;
    }
}

@media screen and (max-width: 411px) {
    .heading-left-s3 h1, .check-email h2 {
        font-size: 22px !important;
    }
}

@media screen and (max-width: 364px) {
    .heading-left-s3 h1, .check-email h2 {
        font-size: 20px !important;
    }
}

.phone-warning {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
    background-color: #E3EEF7;
    margin-top: .5rem;
    border-radius: .2rem;
    width: fit-content;
    border: 1px solid #c6dcef;
}

.phone-warning p {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0;
}