/* WC UAC Public Styles */
.wc-uac-auth-wrap {
    max-width: 440px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    font-family: inherit;
}

.wc-uac-auth-wrap h3 {
    margin-top: 0;
    font-size: 1.4em;
    color: #333;
}

.uac-field {
    margin-bottom: 16px;
}

.uac-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
    font-size: .9em;
}

.uac-field input,
.uac-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color .2s;
}

.uac-field input:focus,
.uac-field select:focus {
    outline: none;
    border-color: #96588a;
}

.wc-uac-btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    cursor: pointer;
    background: #96588a;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background .2s;
    margin-top: 4px;
}

.wc-uac-btn:hover:not(:disabled) { background: #7a4470; }
.wc-uac-btn:disabled { opacity: .6; cursor: not-allowed; }

.uac-btn-back {
    display: block;
    margin-top: 10px;
    font-size: .85em;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.uac-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: .9em;
    display: none;
}

.uac-error   { background: #fde8e8; color: #b91c1c; border: 1px solid #fca5a5; }
.uac-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }

.uac-otp-hint { color: #666; font-size: .9em; margin-bottom: 12px; }
