@import url('./Login.css');

/* ─── Register-specific styles ───────────────────────────────── */

/* Styled select */
.au-select {
    border: 1px solid var(--au-line);
    border-radius: var(--au-r-input);
    padding: 13px 38px 13px 15px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--au-ink);
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    transition: border-color 0.15s;
    box-sizing: border-box;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2364748B' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.au-select:focus { border-color: var(--au-green); }

.au-shell--professional .au-form-inner {
    max-width: 680px;
}

.au-section-title {
    margin: 28px 0 16px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--au-line);
    color: var(--au-green-dk);
    font-size: 15px;
    font-weight: 700;
}

.au-field-hint {
    margin: -6px 0 20px;
    color: var(--au-ink2);
    font-size: 12px;
    line-height: 1.5;
}

/* Phone input wrapper */
.au-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--au-line);
    border-radius: var(--au-r-input);
    overflow: hidden;
    transition: border-color 0.15s;
}

.au-phone-wrap:focus-within { border-color: var(--au-green); }

.au-phone-pre {
    display: inline-flex;
    align-items: center;
    padding: 13px 12px 13px 15px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--au-ink2);
    background: var(--au-bg2);
    border-right: 1px solid var(--au-line);
    white-space: nowrap;
    flex-shrink: 0;
}

.au-phone-wrap .au-input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.au-phone-wrap .au-input:focus {
    border-color: transparent;
    box-shadow: none;
}

/* Hint text below fields */
.au-hint {
    font-size: 12px;
    color: var(--au-ink2);
    margin: 2px 0 0;
}

/* Terms section */
.au-terms { margin-bottom: 18px; }

.au-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: var(--au-ink2);
    line-height: 1.5;
    cursor: pointer;
}

.au-terms-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--au-green);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.au-terms-label a {
    color: var(--au-green);
    font-weight: 600;
    text-decoration: none;
}

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