.home-form-block {
    height: 100vh;
    justify-content: center;
    background-image: url("image/form-block/form-block-image.webp");
    background-size: cover;
    background-position: center;
}

.home-form-card {
    display: flex;
    flex-direction: column;
    width: 530px;
    padding: 30px 32px;
    align-items: stretch;
    gap: 30px;
    background: #FFF;
}

.home-form-card i {
    width: 100%;
    align-self: stretch;
    aspect-ratio: 16/9;
    background-image: url("image/form-block/form-card-image.webp");
}

.home-form-card form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}

.home-form-card-top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.home-form-card form h2 {
    color: #373736;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 40px */
    letter-spacing: -2px;
    text-transform: uppercase;
}

.home-form-card-input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.home-form-card form input {
    display: flex;
    padding: 20px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #D4D4D4;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 19.8px */
    height: 60px;
}

.home-form-card form input::placeholder {
    color: #B5B5B5;
}

.home-form-card-btn-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.home-form-card-btn-container button {
    display: flex;
    height: 58px;
    padding: 26px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: #0CB4CE;
    color: #FFF;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 18px */
    text-transform: uppercase;
}

.home-form-card-btn-container button:hover {
    background: #20C8E2;
}

.home-form-card-btn-container p {
    color: #B5B5B5;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
}


@media (max-width: 989px) {
    .home-form-card {
        width: 365px;
        padding: 37px 32px;
    }

    .home-form-card form h2 {
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
    }

    .home-form-card form input {
        height: 52px;
        padding: 20px 10px;
        font-size: 16px;
    }

    .home-form-card form {
        gap: 20px;
    }

    .home-form-card-btn-container button {
        white-space: nowrap;
    }

    .home-form-card-btn-container p {
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
    }
}
