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

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

.iw-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 100%;
    box-shadow:
        0 8px 25px rgba(0,0,0,0.08),
        0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.iw-logo-card {
    background: white;
    padding: 12px;
    border-radius: 20px;
    box-shadow:
        0 8px 25px rgba(255,135,0,0.22),
        0 0 22px rgba(255,135,0,0.18);
}

.iw-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    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: 14px 0;
    background: linear-gradient(90deg, #ff7a1a, #ff9a4b);
    border-radius: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 12px 22px rgba(255,122,0,0.25);
    transition: 0.25s ease;
}

.iw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255,122,0,0.30);
}

.iw-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.15), transparent);
    margin: 2rem 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;
}

