* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.2;
}

html, body {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    background: #E5E5EF;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1920px;      
    margin: 0 auto;
    padding: 1rem 0;
}

.container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px; 
}

.wrapper {
    width: 100%;
    max-width: 772px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;    
}
.btnWrapper {
    width: 100%;
    max-width: 772px;
}

#bannerWrap img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.wrapper.formInputWrap {
    padding: 1rem 2rem;
}
.wrapper .formInputHeader {
    padding: 1.5rem 0;
}

.formInputHeader .formTitle {    
    position: relative;
    padding-left: 15px;
    color: #525251;
}
.formTitle.require::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "*";
    color: red;    
}

.formInputContent .shortInput {
    width: 100%;
    max-width: 300px;
}
.formInputContent .longInput {
    width: 100%;    
}

.formInputContent input[type="text"] {
    padding: 0.5rem 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #BDBDBD;
    outline: none;
}

.formInputContent textarea {
    border: 1px solid #BDBDBD;
    width: 100%;
    padding: 0.5rem;
    max-width: 100%;
    min-height: 200px;
    max-height: 500px;
    resize: vertical;
    outline: none;    
}

.formInputContent label {
    cursor: pointer;
}

.formInputContent .formSelectWrap {
    position: relative;
    width: 100%;
    max-width: 300px;
}
.formSelectWrap .selectStatus {    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    box-shadow: 0 0 0 1px inset #BDBDBD;
    cursor: pointer;
}
.formSelectWrap .selectOptionsWrap {
    list-style: none;
    box-shadow:
        inset 0 -1px 0 0 #BDBDBD,   /* 아래 */
        inset 1px 0 0 0 #BDBDBD,    /* 오른쪽 */
        inset -1px 0 0 0 #BDBDBD;   /* 왼쪽 */
    background: #FFFFFF;
    display: none; 
}
.selectOptionsWrap li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;    
}
.selectOptionsWrap li:hover {
    background: #90CBFB;
    color: #FFFFFF;
}
.formSelectWrap select {
    display: none;
}

.formSelectWrap .selectIndicator {
    transition: transform 0.2s ease;
}
.formSelectWrap.open .selectIndicator {
    transform: rotate(180deg);
}

.formInputExplain {
    margin-top: 1rem;
    list-style: none;
}
.formInputExplain li {
    font-size: 14px;
    color: #949494;
}

.btnWrapper #apply_btn {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #187CFB;
    background: #187CFB;
    color: #FFFFFF;
    transition: background 0.2s ease, color 0.2s ease;
}
#apply_btn:hover {
    background: #FFFFFF;
    color: #187CFB;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.66);
}