@charset "UTF-8";
@font-face {
    font-family: Bould;
    font-display: swap;
    src: url(/neu/mods/simplr/register/assets/fonts/Bould-Regular.woff2) format("woff2"), url(/neu/mods/simplr/register/assets/fonts/Bould-Regular.woff) format("woff")
}

@font-face {
    font-family: Bould;
    font-display: swap;
    font-weight: 700;
    src: url(/neu/mods/simplr/register/assets/fonts/Bould-Bold.woff2) format("woff2"), url(/neu/mods/simplr/register/assets/fonts/Bould-Bold.woff) format("woff")
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f0f6ff;
    font-family: Bould, serif;
    color: #1a1a2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.no-background {
    background-color: #FFFFFF !important;
}
.no-background .page{
    box-shadow: unset;
}
/* ─── Page layout ────────────────────────────────────────── */
.page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
    margin: 32px 16px;
}

/* ─── Hero photo ─────────────────────────────────────────── */
.hero-photo {
    order: 2;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ─── Contact card (overlay on photo) ───────────────────── */
.contact-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 16px 20px 14px;
}

.contact-card__info strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.contact-card__actions {
    border-top: 1px solid #e2e2e2;
    display: flex;
    padding: 16px 20px 14px;
}

.contact-card__actions span {
    display: inline-flex;
    width: 33%;
}

.contact-card__actions span:first-child {
    border-right: 1px solid #e2e2e2;
}

.contact-card__actions span:last-child {
    border-left: 1px solid #e2e2e2;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #d0dff0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s;
}

i.fa {
    font-size: 22px;
}

.icon-btn-large {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    transition: background 0.15s;
}

.primary-color:link {
    text-decoration: unset;
}

.primary-color:visited {
    text-decoration: unset;
}

.primary-color:hover {
    text-decoration: none;
}

.icon-btn svg {
    width: 15px;
    height: 15px;
}

.icon-btn:hover {
    background: #e8f1fc;
}

.icon-btn {
    background: #e8f1fc;
}

/* ─── Form panel ─────────────────────────────────────────── */
.form-panel {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: #fff;
}

/* ─── Mobile contact (hidden on desktop/tablet) ──────────── */
.mobile-contact {
    display: none;
}

/* ─── Form wrapper ───────────────────────────────────────── */
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.25;
}

.form-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
}

.form-subtitle span {
    max-width: 350px;
    text-align: center;
}

/* ─── Fields ─────────────────────────────────────────────── */
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    display: none;
}

.field label[for=andre] {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
}

.field input,
.field select {
    height: 56px;
    padding: 0 18px;
    border: 1.5px solid #d1d9e6;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.field input::placeholder {
    color: #b0b8c8;
}

.field input:focus,
.field select:focus {
    border-color: #1F95EB;
}

.field select {
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* ─── Checkbox ───────────────────────────────────────────── */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 5px;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ─── Submit button ──────────────────────────────────────── */
.btn-primary {
    height: 46px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 23px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: #005fad;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* ─── Login hint ─────────────────────────────────────────── */
.login-hint {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.login-hint a {
    font-weight: 500;
    text-decoration: none;
}

.login-hint a:hover {
    text-decoration: underline;
}

.icon-btn-large a {
    color: #374151;
}

/* ─── Tablet (~900px) ────────────────────────────────────── */
@media (max-width: 900px) {
    .page {
        grid-template-columns: 1fr;
        grid-template-rows: 664px auto;
        max-width: 540px;
        margin: 20px 16px;
    }

    .hero-photo {
        order: 1;
        height: 664px;
    }

    .form-panel {
        order: 2;
        padding: 32px;
        justify-content: flex-start;
    }

    .contact-card {
        bottom: 16px;
        left: 16px;
        right: 70px;
    }
}


.mobile-contact__actions {
    display: flex;
    justify-content: center;
    margin: 20px;
}

/* ─── Mobile (≤ 480px) ───────────────────────────────────── */
@media (max-width: 480px) {
    body {
        background: #f0f6ff;
        align-items: flex-start;
    }

    .page {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        min-height: 100vh;
        background: #f0f6ff;
    }

    /* Hide hero photo on mobile */
    .hero-photo {
        display: none;
    }

    .form-panel {
        order: 1;
        padding: 28px 20px 40px;
        background: #f0f6ff;
        justify-content: flex-start;
    }

    /* Mobile contact card */
    .mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        -moz-border-radius-topright: 16px;
        -moz-border-radius-topleft: 16px;
        -webkit-border-top-right-radius: 16px;
        -webkit-border-top-left-radius: 16px;
        padding: 24px 20px 20px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
        text-align: center;
        background-color: #E9F4FD;
        height: 360px;
    }

    .mobile-contact__avatar {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #fff;
        box-shadow: 0 2px 12px rgba(0, 94, 196, 0.2);
        margin-bottom: 16px;
        margin-top: 20px;
    }

    .mobile-contact__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-contact__text {
        border: none;
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }

    .mobile-contact__text strong {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
    }

    /* Form on white card */
    .form-wrapper {
        background: #fff;
        -moz-border-radius-bottomright: 16px;
        -moz-border-radius-bottomleft: 16px;
        -webkit-border-bottom-right-radius: 16px;
        -webkit-border-bottom-left-radius: 16px;
        padding: 24px 20px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    }

    .form-title {
        font-size: 20px;
    }

    .form-row--two {
        grid-template-columns: 1fr;
    }
}

.form-title {
    display: flex;
    justify-content: center;
}

p.red {
    margin-bottom: 0;
}

div.red {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

ul li {
    min-width: 250px;
}

.red {
    color: red;
}

.green {
    color: green;
}

.blue {
    background-color: #E9F4FD;

}

.error {
    border: 1px solid #f00 !important;
}

.help-block,
input[type="checkbox"].error + span {
    color: #f00;
}

/* checkbox style */
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid #1F95EB;
    border-radius: 4px;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: #ffffff;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #1F95EB;
    border-color: #1F95EB;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}