.register-form {
    margin-top:0px;
    display:flex;
    flex-direction: column;
    align-items: start;
}

.subscribe-button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 16px;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 4px;
    -webkit-user-select: none;
    user-select: none;
    background-color: #54c2c3b3;
    
}

.subscribe-button:hover {
    background-color: #3ba8a9b3;
}

.dietary-preferences-field {
    /* width: 100%; */
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 8px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.dietary-preferences-field:focus {
    border-color: #54c2c3b3;
    outline: none;
    box-shadow: 0 0 5px rgba(84, 194, 195, 0.5);
}

.register-form-text {
    margin-bottom: 0px;
}