.feedback-page{
    margin-left: 7.4%;
    margin-right: 7.4%;
    margin-top: 3dvh;
    height: 85vh;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#head-feedback, #feedback-tutorial-ref{
    display: none;
}

.feedback-page p{
    font-size: 22px;
}

.feedback-form {
    margin-top: 3dvh;
    gap: 3dvh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feedback-form textarea{
    width: 100%;
    border-radius: 30px;
    background: #F7F7F7;
    border: 0px;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.2vw;
    color: #2E332E;
    padding: 2dvh 3dvw;
    height: 30dvh;
}

.feedback-form label {
    font-size: 28px;
    margin-left: 24px;
}

.feedback-form p {
    padding: 0;
}

.feedback-page .feedback-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8dvh 0;
    height: 50dvh;
}

.feedback-success h2 {
    font-size: 82px;
    font-weight: 900;
    color: #35B728;
    margin-top: 8dvh;
}

.feedback-success h3 {
    font-size: 56px;
    font-weight: 400;
    margin-top: 5dvh;
    text-align: center;
}

.feedback-page img {
    display: none;
}

@media screen and (min-device-width: 480px){

    #head-feedback, #feedback-tutorial-ref{
        display: block;
    }

    .feedback-form h2 {
        font-size: 36px;
    }

    .feedback-success h2 {
        font-size: 28px;
        margin-top: 20px;
    }

    .feedback-success h3 {
        font-size: 22px;
        margin-top: 20px;
    }

    .feedback-form {
        margin-top: 0;
        gap: 20px;
    }

    .feedback-form label {
        font-size: 14px;
        margin-left: 12px;
    }

    .feedback-form input[type="text"]{
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -0.02rem;
        color: #2E332E;
        padding: 20px 20px;
        border-radius: 15px;
    }

    .feedback-form textarea{
        font-size: 20px;
        font-weight: 400;
        letter-spacing: -0.02rem;
        color: #2E332E;
        padding: 20px 20px;
        border-radius: 15px;
    }

    .feedback-form input[type="submit"] {
        padding: 10px;
        height: 70px;
        font-size: 20px;
        border-radius: 15px;
    }
}

@media screen and (min-device-width: 992px){
    .feedback-page {
        margin-left: 8dvw;
        margin-right: 8dvw;
    }
}

@media screen and (min-device-width: 1200px){
    .feedback-page img {
        display: block;
        width: 90%;
        height: auto;
    }

    .feedback-page .img-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}