.page_home {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.page_home .box-text {
    max-width: 759px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.page_home .box-text h1 {
    font-size: 36px;
    line-height: 56px;
}

.box-date {
    display: flex;
    padding: 16px 32px;
    align-items: center;
    border-radius: 99px;
    border: 1px solid #732736;
    background: #F0FDFA;
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    justify-content: center;
    width: fit-content;
    margin: auto;
}

.box-date h2 {
    color: #9B1631;
    font-family: "Playfair Display";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 31.2px */
    text-transform: uppercase;
}
.box-form form{
    position: relative;
}
.box-form p{
    margin-bottom: 09;
}
.box-form input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: #FFF;
    height: 72px;
    padding: 0px 8px 0 16px;
}

.box-form input::placeholder {
    color: #8D8D8D;
    font-size: 16px
}

.box-form button {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    background: #9B1631;
    border: none;
    color: #fff;
}
.box-form button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
@media screen and (max-width:990px) {
    .page_home .box-text h1{
        font-size: 22px;
        line-height: 34px;
    }
}