* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #404040;
    color: #ffffff;
    background-image: url('/background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

body[lang="en"] {
    font-family: "Noto Sans";
}

body[lang="jp"] {
    font-family: "Noto Sans JP";
}

body[lang="kr"] {
    font-family: "Noto Sans KR";
}

body[lang="zh-tw"] {
    font-family: "Noto Sans TC";
}

body[lang="zh-cn"] {
    font-family: "Noto Sans SC";
}

#report-form-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-container {
    background-color: #000000;
    border-radius: 10px;
    max-width: 680px;
    width: 100%;
    padding: 48px 87px 40px;
    position: relative;
}

.lang-switcher {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 16px;
    font-weight: 400;
}

.lang-switcher a {
    color: #afafaf;
    text-decoration: none;
}

.lang-switcher a:hover {
    text-decoration: underline;
}

h1 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}

#zendeskForm {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-group:last-of-type {
    margin-bottom: 42px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    height: 36px;
    background-color: #d9d9d9;
    border: none;
    border-radius: 10px;
    padding: 8px 13px;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 19.2px;
}

input[type="text"],
input[type="email"] {
    height: 36px;
    color: #000000;
    font-weight: 700;
}

select {
    -webkit-appearance: none; /* For WebKit browsers */
    -moz-appearance: none;    /* For Mozilla browsers */
    appearance: none;         /* Standard property */
    background: url("/select.svg") no-repeat center right 10px #d9d9d9;   /* Remove any default background arrow */
    height: 36px;
    position: relative;
    cursor: pointer;
}

.details-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
    margin: -2px 0 19px 0;
}

.details-description ul {
    margin-top: 0em;
    margin-bottom: 0em;
}

textarea {
    width: 100%;
    height: 107px;
    background-color: #d9d9d9;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    resize: vertical;
}

.file-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #d9d9d9;
    color: #000000;
    border-radius: 10px;
    height: 42px;
    padding: 0 8px;
}

button[type="submit"] {
    width: 100%;
    height: 42px;
    background-color: #cfb680;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    .background-layer {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
    .background-layer img {
        object-fit: cover;
    }
}

.icn-spinner {
    width: 1em;
    height: 1em;
    animation: spin-animation 1s infinite;
    animation-timing-function: linear;
    display: none;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}