/* Host Signup — additional styles (base theme from style.css) */

/* Card subtitle */
.card-subtitle {
    text-align: center;
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Progress bar */
.progress {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}

.progress-step {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.progress-step.active {
    background: #e94560;
}

/* Helper text under labels */
.field-helper {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Chips (category / vibe selection) */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 8px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    background: rgba(255, 255, 255, 0.05);
    color: #d0d0d0;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(233, 69, 96, 0.3);
}

.chip.selected {
    background: rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.6);
    color: #fff;
    font-weight: 600;
}

/* Other category input */
#otherCategoryField {
    display: none;
    margin-top: 12px;
}

#otherCategoryField.show {
    display: block;
}

/* File upload */
.file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-upload-preview {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.file-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-upload-preview svg {
    width: 24px;
    height: 24px;
    fill: #e94560;
}

.file-upload-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-size: 13px;
    color: #d0d0d0;
    transition: all 0.2s;
}

.file-upload-btn:hover {
    border-color: #e94560;
    color: #fff;
}

.file-upload input[type="file"] {
    display: none;
}

/* Social input prefix */
.social-input {
    display: flex;
    align-items: stretch;
}

.social-input .prefix {
    padding: 14px 10px 14px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 15px;
    color: #a0a0a0;
    display: flex;
    align-items: center;
}

.social-input input {
    border-radius: 0 10px 10px 0 !important;
    flex: 1;
}

/* Button row */
.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-back {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-row .verify-btn {
    flex: 1;
}

/* ── Mode Switch Links ─────────────────────────────────── */
.mode-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #a0a0a0;
}

.mode-switch-link {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mode-switch-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* ── No Account Message ────────────────────────────────── */
#noAccountMsg {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fde047;
    padding: 16px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}

#noAccountMsg a {
    color: #e94560;
    font-weight: 600;
    text-decoration: none;
}

#noAccountMsg a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .btn-row {
        flex-direction: column;
    }
}
