.input-content {
    min-width: 40vw;
    background-color: #fff;
    box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    border-radius: 0.25em;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
}

.input-content .inputbox {
    overflow: hidden;
    position: relative;
    padding: 15px 0 28px 0;
}

.input-content .inputbox-pw {
    overflow: hidden;
    padding: 15px 0 28px 0;
    position: relative;
}

.input-content .inputbox-title {
    position: absolute;
    top: 15px;
    left: 0;
    width: 200px;
    height: 30px;
    color: #666;
    font-weight: bold;
    line-height: 30px;
}

.input-content .inputbox-content {
    position: relative;
    width: 100%;
}

.input-content .inputbox-content input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    line-height: 30px;
    font-size: 14px;
    border: 0;
    background: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    border-radius: 0;
}

.input-content .inputbox-content input:focus ~ label,
.input-content .inputbox-content input:valid ~ label {
    color: #000000;
    transform: translateY(-20px);
    font-size: 0.825em;
    cursor: default;
}

.input-content .inputbox-content input:focus ~ .underline {
    width: 100%;
}

.input-content .inputbox-content label {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    line-height: 30px;
    color: #757575;
    cursor: text;
    transition: all 200ms ease-out;
    z-index: 10;
}

.input-content .inputbox-content .underline {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        #4279bc,
        #b8d7ff
    ); /* Applies a gradient */
    transition: all 200ms ease-out;
}

.btn_auth {
    border: 1px solid #0000003d;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 50px;
    padding-left: 50px;
    background: #f5f5f5;
    color: #0006;
    cursor: default;
    border-radius: 0.25em;
    pointer-events:none;
}

.btn_auth.filled {
    border: 1px solid #163c6b;
    background: #163c6b;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.btn_auth.filled:hover {
    border: 1px solid #4279bc;
    background: #4279bc;
    color: #fff;
    cursor: pointer;
    transition: all 200ms ease-out;
}

.auth_header {
    padding-bottom: 30px;
}

dd {
    margin-inline-start: 0;
}

.link-and-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.error {
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #ffd7d7;
    color: red;
    font-size: 12px;
    border-radius: 0.25em;
    width:fit-content;
}

.info {
    padding-top: 5px;
    padding-left: 7px;
    color: rgb(173, 173, 173);
    font-size: 12px;
}

/* Checkmark */

.cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
}

.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #69696b;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.cbx span:last-child {
    padding-left: 8px;
}

.cbx:hover span:first-child {
    border-color: #040404;
}

.inp-cbx:checked + .cbx span:first-child {
    background: #4279bc;
    border-color: #4279bc;
    animation: wave 0.1s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(2.3);
    opacity: 0;
    transition: all 0.4s ease;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

/* Boxes and input */

.input-content {
    min-width: 40vw;
    background-color: #fff;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);;
    border-radius: 0.25em;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
}

.label_input_flex {
    display: flex;
    flex-direction: column;
}

.margin_auth_top {
    margin-top: 1em;
}

.margin_auth_agb {
    border-top: 1px solid #e3e3e3;
    margin-top: 1.5em;
    /* padding-top:1.5em; */
}

.auth {
    width: 100% !important;
}

.flex_mobile_auth_agb {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: var(--sp-m) 0;
    flex-direction: column;
}

.flex_mobile_auth_agb_login {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: var(--sp-m) 0;
    flex-direction: row;
}

@media (max-width: 767px) {
    .flex_mobile_auth_agb {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
         font-size: var(--pn9-text-sm);
    }

    .flex_mobile_auth_agb_login {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
        font-size: var(--pn9-text-sm);
}

    .mobile_agb_checkbox {
        display: flex;
        padding-bottom: 1em;
    }
    .split_agb_span {
        display: flex;
        align-items: center;
    }

    .two-thirds {
        flex: 2;
    }

    .outer_auth {
        width: 100%;
    }
    .input-content {
        min-width: 95vw;
    }

    .au-lnk{
        font-size: var(--pn9-text-sm)!important;
    }
}

/* Extras */

.empty {
    padding-top: 50px;
}

.auth_link_style {
    color: hsl(213, 74%, 20%);
}


.cookie_alert{
    z-index: 10;
    display: flex;
    position:relative;
    justify-content: center;
    margin-top:var(--sp-xx);
    margin-bottom:-20px;
}

.cookie_message{
    background-color: white;
    padding:var(--sp-m);
    border-radius:0.25em;
    border:1px solid #86B6F3;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.02);
}