.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.form-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

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

.gap {
    gap: 20px;
}

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

.margin {
    margin: 20px 0;
}

.margin-top {
    margin-top: 20px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-small {
    margin: 10px 0;
}

.margin-top-small {
    margin-top: 10px;
}

.margin-bottom-small {
    margin-bottom: 10px;
}