.form-wrapper {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 1rem;

}

.app-review-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 10rem 0;
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
}

.desktop-button-wrapper {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-button-wrapper a {
    color: white;
}

.desktop-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #008237;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.title-wrapper h3 {

}

.title-wrapper p {
    font-size: 17px;
}

@media (max-width: 768px) {

    .app-review-wrapper {
        padding: 10rem 1rem;
    }
}


