.entry .wrapper{
    max-width: 80rem;
}

.form_content{
    display: flex;
    flex-flow: column;
    gap: 3rem;
}

.form_item label{
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form_item label .required{
    color: #fff;
    background: #DD6265;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0.2rem 0.3rem;
    border-radius: 0.2rem;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea,select {
    background: #fff;
    border: solid 0.105rem #ccc;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.2rem;
}

input::placeholder,
textarea::placeholder {
    opacity: 0.6;
}

select {
    width: 25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path d="M11.7998 1L6.39988 7L0.999804 1" stroke="%233E3E3E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

select::-ms-expand {
    display: none;
}

textarea{
    height: 20rem;
}

.send{
    text-align: center;
    margin-top: 4rem;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 0.2rem solid #ccc;
    width: 2rem;
    height: 2rem;
    border-radius: 0.2rem;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    transition: background-color 0.2s, border-color 0.2s;
}

input[type="checkbox"]:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0.4rem;
    width: 0.8rem;
    height: 1.2rem;
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
}

.policy{
    text-align: left;
}

.policy a{
    text-decoration: underline;
    transition: 0.3s;
}

.policy a:hover{
    opacity: 0.6;
}

.send_btn{
    width: fit-content;
    margin: 4rem auto 0;
    position: relative;
}

.send_btn button{
    color: #fff;
    background: linear-gradient(to top right, #EA3D4C, #FF7E80);
    font-weight: 700;
    padding: 1.5rem 5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.send_btn:hover button{
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .entry .wrapper{
        max-width: 90%;
    }
}