body {
    margin: 0;
    font-family: 'Gilroy', sans-serif;
    background: rgba(249, 245, 233, 0.35);
}

.container {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    gap: 20px;
    width: 100%;
}


.block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 24px);
}


.main-text {
    width: 573px;
    max-width: 573px;
    display: flex;
    justify-content: center;
}

.texts {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-family: 'Times';
    font-weight: 400;
    font-size: 44px;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.img {
    width: 725px;
}

.img img {
    width: 100%;
    height: auto;
}

form {
    width: calc(100% - 24px);
    padding-top: 72px;
}

input {
    height: 53px;
    width: 70%;
    border: none;
    background: transparent;
    border-bottom: 1px solid #7b6f374d;
}

input::placeholder {
    color: black;
}

input:focus-visible {
    border-bottom: 1px solid #7b6f374d;
    outline: none !important;
}

button {
    width: calc(100% - 72%);
    height: 53px;
    color: #E4E4E4;
    background-color: #7B6E37;
    font-family: Times;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 1200px) {

    .blocks {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .block {
        flex-direction: column;
        text-align: center;
        width: calc(100% - 24px);
    }

    .main-text {
        max-width: 573px;
        width: calc(100% - 24px);
    }

    .title {
        font-size: 40px;

    }

    .description {
        font-size: 0.9rem;
    }

    .img {
        width: 100%;
    }

    .img img {
        width: calc(100% - 24px);
        max-width: 440px;

    }
}

@media (max-width: 480px) {
    button {
        font-size: 14px;
    }
}