.form-wrapper {
    width: 379px;
    margin-right: 150px;
    margin-bottom: 15px;
    z-index: 2;
}

.form-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 1rem;
}

.mainForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.mainForm .input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mainForm .input-wrapper .input-title h1 {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

.mainForm .input-wrapper .input-title h1 span {
    color: red;
}

.mainForm .inputbox {
    color: #fff;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 300;
    border: none;
    outline: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: rgba(255, 255, 255, .1);
}

.mainForm .inputbox::placeholder {
    color: #ccc;
}

.mainForm .inputbox:focus {
    background-color: rgba(255, 255, 255, .15);
}

.mainForm select {
    color: #ccc;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 300;
    border: none;
    outline: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
}

.mainForm select:valid {
    color: #fff;
}

.mainForm select option {
    color: #222;
    font-size: 15px;
    background-color: #fff;
    box-shadow: none;
}

.mainForm .inputbox:hover,
.mainForm .selectbox:hover {
    background-color: rgba(255, 255, 255, .15);
}


.f-submit {
    color: #fff;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 0 19px;
    border: none;
    outline: none;
    background-color: var(--main-color);
    cursor: pointer;
}

.f-submit:disabled {
    color: #aaa;
    font-weight: 300;
    cursor: not-allowed;
    background-color: #333;
}

.f-personal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-personal-text input {
    display: none;
}

.f-personal-text label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.f-personal-text label em {
    position: relative;
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
    background-color: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
}

.f-personal-text label em::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    display: none;
}

.f-personal-text label p {
    color: #fff;
    font-size: 12px;
    user-select: none;
    cursor: pointer;
}

#cb:checked ~ label em::after {
    display: block;
}

.f-personalBtn {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
}

.f-personalBtn:hover {
    background-color: rgba(255, 255, 255, .15);
}


.pp-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 99;
    display: none;
}

.policy-popup {
    position: relative;
}

.pp-title {
    position: absolute;
    top: 0;
    width: calc(100% - .3em);
    padding: 20px 30px;
    border-radius: 3px 3px 0 0;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    z-index: 1;
}

.pp-title h1 {
    font-size: 24px;
}

.pp-closeBtn {
    position: absolute;
    top: 26px; right: 30px;
    width: 20px;
    max-width: 20px;
    cursor: pointer;
    z-index: 2;
}

.policy-popup textarea {
    color: #222;
    width: 600px;
    height: 450px;
    padding: 30px;
    padding-top: 95px;
    font-size: 15px;
    line-height: 1.4;
    resize: none;
    border: none;
    outline: none;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.policy-popup textarea::-webkit-scrollbar {
    width: .3em;
}

.policy-popup textarea::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .0);
}

.policy-popup textarea::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 30px;
    outline: none;
}



/*==================================================*/
@media (min-width: 2560px) {
    .form-wrapper {
        margin-right: 0;
    }
}


@media (max-width: 1250px) {
    .promotion {
        background-position: right !important;
    }
    
    .promotion-wrapper .form-wrapper {
        display: none;
    }
}


@media (max-width: 650px) {
    .form-wrapper {
        width: 100%;
    }

    .policy-popup {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pp-title {
        width: 100%;
    }

    .policy-popup textarea {
        width: 100%;
    }

    .policy-popup textarea::-webkit-scrollbar {
        display: none;
    }
}


@media (max-width: 550px) {
    .form-wrapper {
        padding: 0 10px;
    }

    .mainForm .input-wrapper .input-title h1 {
        font-size: 13px;
    }
    
    .mainForm .inputbox {
        height: 43px;
        font-size: 13px;
    }

    .mainForm textarea {
        font-size: 13px;
    }

    .radio-wrapper label {
        padding: 11px 0;
        font-size: 13px;
    }

    .f-personal {
        padding: 15px;
    }
    
    .f-personal-text label p {
        font-size: 12px;
        letter-spacing: -0.02em;
    }

    .f-personalBtn {
        font-size: 10px;
    }


    .pp-title {
        padding: 15px 20px;
    }

    .pp-title h1 {
        font-size: 16px;
    }

    .pp-closeBtn {
        top: 16px; right: 20px;
        width: 12px;
    }

    .policy-popup textarea {
        height: 300px;
        padding: 20px;
        padding-top: 65px;
        font-size: 13px;
    }

    .f-submit {
        height: 45px;
        font-size: 14px;
    }
}