/* SIGNUP CREDENTIALS PAGE */

.signup-credentials {
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 24px 60px;
    align-items: stretch;
    gap: 0;
    min-height: calc(100vh - 120px);
}

.signup-left,
.signup-right {
    width: 50%;
}

.signup-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f2;
    min-height: 620px;
    padding: 40px;
}

.signup-logo {
    width: 260px;
    max-width: 80%;
    object-fit: contain;
}

.signup-right {
    padding-left: 32px;
    border-left: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-box {
    width: 100%;
    max-width: 520px;
}





    .signin-link { text-align: center; font-size: 17px; margin-bottom: 80px; color: #111; }
    .signin-link a { color: #111; text-decoration: none; font-weight: 500; }
    .signin-link span { padding: 0 8px; }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
    .field { margin-bottom: 34px; position: relative; }
    .field input,
    .field select {
        width: 100%; border: 0; border-bottom: 1px solid #d8d8d8; outline: none;
        font-size: 22px; padding: 18px 0 12px; background: transparent; color: #222;
        border-radius: 0;
    }
    .field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
    .field label {
        position: absolute;
        left: 0;
        top: 20px;
        font-size: 22px;
        color: #222;
        pointer-events: none;
        transition: .22s ease;
    }
    .field input::placeholder { color: transparent; }
    .field input:focus + label,
    .field input:not(:placeholder-shown) + label,
    .field select:focus + label,
    .field select.has-value + label {
        left: auto;
        right: 0;
        top: 0;
        font-size: 12px;
        color: #111;
    }
    .field-help { margin-top: -24px; margin-bottom: 20px; font-size: 13px; min-height: 18px; }
    .field-help.ok { color: #146c2e; }
    .field-help.error { color: #b00020; }
    .field-help.info { color: #333; }
    .field-help a,
    .inline-action { color: #111; text-decoration: underline; background: none; border: 0; padding: 0; margin-left: 8px; cursor: pointer; font-size: 13px; }
    .terms { display: flex; gap: 10px; align-items: flex-start; margin-top: -15px; font-size: 16px; line-height: 1.7; color: #333; }
    .terms input { width: 20px; height: 20px; margin-top: 3px; accent-color: #222; flex: 0 0 auto; }
    .terms a { color: #333; text-decoration: none; }
    .btn-create {
        width: 100%; height: 68px; margin-top: 70px; border: 1px solid #bbb; background: #fff;
        color: #aaa; font-size: 24px; font-weight: 600; cursor: pointer; letter-spacing: .3px;
    }
    .btn-create:not(:disabled):hover { color: #222; border-color: #222; }
    .btn-create:disabled { cursor: not-allowed; opacity: .65; background: #fff; color: #aaa; }
    .message { margin-bottom: 24px; padding: 12px 14px; font-size: 15px; border-radius: 4px; }
    .message.error { background: #fff0f0; color: #b00020; border: 1px solid #ffd0d0; }
    .message.success { background: #f0fff4; color: #146c2e; border: 1px solid #c8f0d0; }
    .otp-title { font-size: 28px; font-weight: 500; margin: 0 0 12px; }
    .otp-subtitle { font-size: 16px; color: #555; line-height: 1.6; margin: 0 0 45px; }
    .small-action { margin-top: 18px; background: none; border: 0; color: #222; text-decoration: underline; cursor: pointer; font-size: 15px; }







/* MOBILE */
@media (max-width: 768px) {
    .signup-credentials {
        flex-direction: column;
        padding: 16px 16px 40px;
        margin-top: 0;
        min-height: auto;
    }

    .signup-right {
        order: 1;
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    .signup-left {
        order: 2;
        width: 100%;
        min-height: 220px;
        padding: 28px;
        margin-top: 24px;
    }

    .signup-logo {
        width: 180px;
    }

    .signup-box {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signin-link {
        text-align: center;
    }

    .signin-link { margin-bottom: 20px !important; font-size: 13px !important; }
        .form-row { display: grid !important; grid-template-columns: 1fr !important; gap: 0 !important; }
        .field { margin-bottom: 10px !important; }
        .field input,
        .field select { font-size: 14px !important; padding: 17px 0 10px !important; }
        .field label { font-size: 14px !important; top: 18px !important; }
        .field input:focus + label,
        .field input:not(:placeholder-shown) + label,
        .field select:focus + label,
        .field select.has-value + label { font-size: 10px !important; top: 0 !important; }
        .terms { font-size: 10px !important; line-height: 1.6 !important; margin-top: 5px !important; }
        .terms input { width: 14px !important; height: 14px !important; }
        .btn-create { margin-top: 44px !important; height: 42px !important; font-size: 14px !important; }
        .message { font-size: 12px !important; }
}




@media (max-width: 700px) {
    .forgot-link {
        margin-top: 20px;
        display: block;
    }
}