.lighthouse-audit-form {
    max-width: 540px;
    margin: 40px auto;
    padding: 32px;

    background: #2b2b2b;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.03);

    font-family: inherit;
    box-sizing: border-box;
}

/* Inputs */
.lighthouse-audit-form input {
    width: 100%;
    height: 56px;

    padding: 0 18px;

    background: #f5f5f5;
    color: #1f1f1f;

     border: 2px solid rgba(255,255,255,0.06)!important;
    border-radius: 12px!important;

    font-size: 15px;
    font-weight: 500;

    transition: all 0.2s ease;
    box-sizing: border-box;
}

.lighthouse-audit-form input + input {
    margin-top: 16px;
}

.lighthouse-audit-form input::placeholder {
    color: #9ca3af;
}

.lighthouse-audit-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: #f47c2a;
    box-shadow: 0 0 0 4px rgba(244,124,42,0.12);
}
.lighthouse-audit-form input:hover {
    border-color: rgba(244,124,42,0.35);
}

.lighthouse-audit-form input:has(input:checked) {
    border-color: #f47c2a;
    background: rgba(244,124,42,0.12);
}
/* Button */
.lighthouse-audit-form button {
    width: 100%;
    height: 56px;

    margin-top: 20px;

    border: none;
    border-radius: 12px;

    background: #f47c2a;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.lighthouse-audit-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244,124,42,0.25);
}

/* Message */
#la_message {
    margin-top: 16px;
	 border-radius: 12px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Accordion */
.la-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.la-accordion-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* Options */
.la-option {
    display: flex;
    align-items: center;

    min-height: 58px;
    padding: 0 18px;

    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 12px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.la-option input {
    display: none;
}

.la-option span {
    color: #fff;
    font-size: 15px;
}

.la-option:hover {
    border-color: rgba(244,124,42,0.35);
}

.la-option:has(input:checked) {
    border-color: #f47c2a;
    background: rgba(244,124,42,0.12);
}

/* Responsive */
@media (max-width: 600px) {
    .lighthouse-audit-form {
        margin: 20px 12px;
        padding: 24px 18px;
    }
}