
body {
    font-family: "Outfit", sans-serif;
    background: #f7f7f8;
}

.iw-aura {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255,145,0,0.22), transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(255,145,0,0.13), transparent 60%);
    z-index: -1;
}

.iw-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem 3rem;
    width: 100%;
    max-width: 900px;
    box-shadow:
        0 10px 35px rgba(0,0,0,0.08),
        0 6px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

.iw-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fafafa;
    transition: 0.2s;
    color: black;
}

.iw-input:focus {
    border-color: #ff7a1a;
    box-shadow: 0 0 0 3px rgba(255,122,0,0.25);
    outline: none;
    color:#0A0A0A;
}

.iw-button {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(90deg, #ff7a1a, #ff9d4d);
    border-radius: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 30px rgba(255,122,0,0.25);
    transition: 0.25s ease;
}

.iw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255,122,0,0.32);
}

.iw-type-card {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    transition: 0.25s;
    cursor: pointer;
    background: #fafafa;
}

.iw-type-card:hover {
    border-color: #ff7a1a;
    background: #fff3e9;
    box-shadow: 0 8px 25px rgba(255,122,0,0.18);
}

input[type="radio"]:checked + .iw-type-card {
    border-color: #ff7a1a;
    background: #fff1e4;
    box-shadow: 0 10px 30px rgba(255,122,0,0.20),
    0 0 0 3px rgba(255,122,0,0.30);
}

.iw-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.15), transparent);
    margin: 2.5rem 0;
}
.iw-home-link {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #ff7a1a;
    font-weight: 500;
    transition: 0.2s;
}

.iw-home-link:hover {
    text-decoration: underline;
    color: #ff9a4b;
}
/* Choices.js dropdown list items */
.choices__list--dropdown .choices__item {
    color: #000 !important;
}

/* The selected item shown in the input */
.choices__item--selectable {
    color: #000 !important;
}

/* Placeholder text */
.choices__placeholder {
    color: #000 !important;
    opacity: 1 !important;
}
