.w1{
    width: 100%;
}
.pr{
    position: relative;
}
.section_text_container{
    padding: 0 20px 80px;
    align-items: center;
}
.section_text_box{
    &.type_1{
        max-width: 800px;
        align-items: center;
    }
}
.section_content_row{
    &.row_2{
        align-items: center;
        padding: 0 10px;
    }
}
.section_content_box{
    padding-top: 50px;
    &.box_2{
        align-items: center;
        background: white;
    }
    &.box_3{
        align-items: flex-start;
        gap: 5px;
    }
}
.section_text_row{
    &.type_1{
        align-items: flex-start;
        gap: 5px;
    }
}
.section_text{
    &.type_1{
        font-size: max(24px, 2vmax);
    }
    &.type_2{
        font-size: 18px;
    }
    &.type_3{
        font-size: 16px;
        &.for_label{
            color: rgb(180, 25, 25);
            font-weight: bold;
        }
        a{
            color: rgb(180, 25, 25);
            text-decoration: underline;
        }
    }
    &.type_4{
        font-size: 16px;
        font-weight: bold;
        line-height: 1;
        padding-top: 2px;
    }
    &.type_5{
        font-size: 12px;
        color: white;
        padding: 3px 5px;
        background: rgb(180, 25, 25);
    }
    &.type_6{
        font-size: 18px;
        color: white;
        line-height: 1;
        padding-top: 2px;
    }
}
.form_container{
    padding: 40px 10px 0;
    align-items: center;
    gap: 40px;
}
.form{
    max-width: 800px;
    gap: 5px;
}
.form_row{
    align-items: flex-start;
}
.form_box{
    &.type_1{
        flex: 1;
        padding: 20px;
        align-items: center;
        justify-content: space-between;
    }
    &.type_2{
        flex: 1.8;
        background: white;
        border: 2px solid rgb(180, 25, 25);
    }
}
.input{
    font-size: 16px;
    padding: 20px;
    border: none;
    &:focus{
        border: none;
        outline: none;
    }
    &.type_2{
        height: 200px;
    }
}
.submit_row{
    justify-content: center;
    padding-top: 35px;
}
.submit_btn{
    background: rgb(38, 18, 0);
    border: none;
    width: 200px;
    aspect-ratio: 3 / 1;
    padding: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.error_box{
    max-width: 800px;
    padding: 30px;
    border: 2px dashed rgb(180, 25, 25);
    background: white;
    align-items: flex-start;
}
.error_message{
    font-size: 14px;
    color: rgb(180, 25, 25);
}
@media all and (max-width:1200px){
    
}
@media all and (max-width:850px){
    .form_row{
        flex-direction: column;
    }
    .form_box{
        width: 100%;
        &.type_1{
            flex: none;
            padding: 10px;
            padding-left: 0;
            justify-content: flex-start;
            gap: 20px;
        }
    }
}
@media all and (max-width:500px){
    .section_text{
        &.type_1{
            font-size: 18px;
        }
        &.type_2,&.type_3,&.type_4{
            font-size: 14px;
        }
        &.type_5{
            font-size: 10px;
        }
        &.type_6{
            font-size: 16px;
        }
    }
    .input{
        padding: 10px 15px;
    }
    .form_container{
        padding: 20px 10px 0;
    }
    .submit_row{
        padding-top: 15px;
    }
    .submit_btn{
        aspect-ratio: 4 / 1;
    }
}
@media (any-hover: hover){
    .section_content_box{
        &.box_2{
            transition: background ease 0.25s;
            &:hover{
                background: rgb(180, 25, 25, 0.05);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
        }
    }
    .submit_btn{
        transition: background ease 0.25s;
        &:hover{
            background: rgb(121, 121, 121);
        }
    }
}
