/* Container */
.report {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 2rem 1rem;
}

/* Header row */
.report > section:first-of-type {
    width: 100%;
    color: var(--color-cyan-teal);
    text-align: center;
    padding: 2rem 1rem;
}

.report > section:first-of-type h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

/* Content row */
.report > section:last-of-type {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

/* Image and form articles */
.report-form {
    flex: 1;
}

.report-form img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Form styling */
.report-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1rem;
}

.report article {
    margin: 0 auto;
}

.report label {
    font-weight: 600;
    color: var(--color-cyan-teal);
    margin-bottom: 0.25rem;
}

.report input,
.report select,
.report textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    color: black;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.report input:focus,
.report select:focus,
.report textarea:focus {
    border-color: var(--color-cyan-teal);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 5px var(--color-cyan-teal);
}

input:-webkit-autofill {
    background-color: white !important;
    -webkit-box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: black !important;
    color: black !important;
}

@media (max-width: 975px) {
    .report > section:last-of-type {
        flex-direction: column;
        max-width: 975px;
        width: 100%;
        margin: 0 auto;
        padding: 1rem 0;
    }

    .report-form {
        width: 100%;
    }

    .report-form form {
        padding: 1rem 0;
    }

    .report-form img {
        display: block;
        margin: 0 auto 2rem;
    }
}



