* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: segoe-ui, -apple-system, sans-serif;
    background-color: white;
    color: black;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 80px 208px;
    overflow: hidden;
    background-color: white;
}

.content-wrapper {
    width: 100%;
    max-width: 1242px;
}

.header-image {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 13.51;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.side-image {
    width: 74px;
    object-fit: contain;
    margin-top: 36px;
}

.side-image.left {
    aspect-ratio: 2;
    border-radius: 24px;
}

.side-image.right {
    aspect-ratio: 2;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.logo {
    width: 74px;
    object-fit: contain;
    aspect-ratio: 0.82;
}

.intro-text {
    background-color: rgb(228, 228, 228);
    padding: 14px 32px 20px;
    margin-top: 6px;
    text-align: center;
    font-size: 16px;
}

.section-title {
    margin-top: 40px;
    font-size: 16px;
    font-weight: normal;
}

.form-group {
    width: 100%;
    max-width: 604px;
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: 604px;
    margin-top: 24px;
}

.form-group.half {
    flex: 1;
    min-width: 0;
}

label {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.form-input {
    width: 100%;
    height: 36px;
    border-radius: 12px;
    border: none;
    background-color: rgb(228, 228, 228);
}

.form-textarea {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    border: none;
    background-color: rgb(228, 228, 228);
    resize: none;
    padding: 8px;
}

.upload-instruction {
    margin-top: 16px;
    text-align: center;
}

.upload-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 56px;
    margin-top: 16px;
    background-color: rgb(228, 228, 228);
    border-radius: 24px;
    width: 285px;
}

.upload-box img {
    width: 48px;
    aspect-ratio: 1;
    object-fit: contain;
}

.media-instruction {
    margin-top: 36px;
    text-align: center;
}

.underline {
    text-decoration: underline;
    color: inherit;
}

.upload-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 604px;
    margin-top: 20px;
}

.upload-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-column .upload-box {
    width: 100%;
    padding: 32px;
}

.terms-container {
    display: flex;
    gap: 8px;
    margin-top: 44px;
    max-width: 388px;
}

.checkbox-container {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.checkmark {
    width: 24px;
    height: 24px;
    background-color: rgb(228, 228, 228);
    flex-shrink: 0;
}

.terms-text {
    flex: 1;
    width: 352px;
}

.submit-button {
    margin-top: 40px;
    padding: 8px 12px;
    background-color: rgb(228, 228, 228);
    border: none;
    font-size: 16px;
    color: black;
    cursor: pointer;
    width: 74px;
}

@media (max-width: 768px) {
    .container {
        padding: 32px 20px 96px;
    }

    .form-container {
        flex-direction: column;
        align-items: center;
    }

    .side-image {
        margin-top: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .upload-grid {
        flex-direction: column;
    }

    .upload-box {
        padding: 32px 20px;
    }
}
