/* ================================================================
   Company Register Page  (/company-register/)
   This file is only enqueued on the company-register page.
   ================================================================ */

.entry-header {
    text-align: center;
    margin-bottom: 0.25em;
}

.rewct-register-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 0 0 2em;
    line-height: 1.6;
}

/* Wrap the UM form in a card */
.um-outercontainer {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 2em 2.5em !important;
    max-width: 980px;
    margin: 0 auto;
}

/* Field labels */
.um .um-field-label label {
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    color: #333 !important;
}

/* Text inputs */
.um input[type="text"],
.um input[type="email"],
.um input[type="tel"],
.um input[type="password"] {
    border: 1px solid #d0d0d0 !important;
    border-radius: var(--radius) !important;
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
    background: #fafafa !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}

.um input[type="text"]:focus,
.um input[type="email"]:focus,
.um input[type="tel"]:focus {
    border-color: #00cece !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 206, 206, 0.12) !important;
}

/* Company search input (our custom field) */
.rewct-company-search__input {
    border: 1px solid #d0d0d0 !important;
    border-radius: var(--radius) !important;
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
    background: #fafafa !important;
    transition: border-color 0.15s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.rewct-company-search__input:focus {
    border-color: #00cece !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(0, 206, 206, 0.12) !important;
    outline: none !important;
}

/* Submit button */
.um input[type="submit"].um-button {
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    padding: 14px 32px !important;
    width: auto !important;
    min-width: 200px !important;
    max-width: 340px !important;
    display: block !important;
    margin: 0.5em auto 0 !important;
}

/* Trust bar */
.rewct-trust-bar {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.rewct-trust-bar__lock {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rewct-trust-bar__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.rewct-trust-bar__badge {
    border-radius: var(--radius);
    padding: 2px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.rewct-trust-bar__points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rewct-trust-bar__point {
    font-size: 0.78rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rewct-trust-bar__point::before {
    content: '✓';
    color: #00cece;
    font-weight: 700;
}